blob: 132cd2e05a0ae3d32f63c53d042fc716c5cea8ee [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
83 tall_telnet_ctx = talloc_named_const(tall_ctx, 1,
Sylvain Munauta9efc122012-03-01 20:41:40 +010084 "telnet_connection");
Harald Welte3fb0b6f2010-05-19 19:02:52 +020085
Sylvain Munauta9efc122012-03-01 20:41:40 +010086 rc = osmo_sock_init_ofd(
87 &server_socket,
88 AF_UNSPEC, SOCK_STREAM, IPPROTO_TCP,
89 ip, port, OSMO_SOCK_F_BIND
90 );
Harald Welte3fb0b6f2010-05-19 19:02:52 +020091
92 server_socket.data = priv;
Harald Welte3fb0b6f2010-05-19 19:02:52 +020093
Neels Hofmeyr55dc2ed2016-09-19 14:10:25 +020094 if (rc < 0) {
95 LOGP(DLGLOBAL, LOGL_ERROR, "Cannot bind telnet at %s %d\n",
96 ip, port);
97 return -1;
98 }
99
Max7a2ec6e2018-10-24 11:29:31 +0200100 LOGP(DLGLOBAL, LOGL_NOTICE, "Available via telnet %s %d\n", ip, port);
Neels Hofmeyr55dc2ed2016-09-19 14:10:25 +0200101 return 0;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200102}
103
Holger Hans Peter Freyther99ae4012018-12-15 17:36:41 +0000104/*! Initializes telnet based VTY interface using the configured bind addr/port.
105 * \param[in] tall_ctx \ref talloc context
106 * \param[in] priv private data to be passed to callback
Max5b376422022-12-03 20:22:08 +0300107 * \param[in] default_port TCP port number to bind to if not explicitly configured
Holger Hans Peter Freyther99ae4012018-12-15 17:36:41 +0000108 */
109int telnet_init_default(void *tall_ctx, void *priv, int default_port)
110{
111 return telnet_init_dynif(tall_ctx, priv, vty_get_bind_addr(),
112 vty_get_bind_port(default_port));
113}
114
115
Holger Hans Peter Freyther2e228fc2010-09-11 13:41:41 +0800116extern struct host host;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200117
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200118/*! close a telnet connection */
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200119int telnet_close_client(struct osmo_fd *fd)
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200120{
121 struct telnet_connection *conn = (struct telnet_connection*)fd->data;
Vadim Yanitskiy74b6ff02019-07-28 00:28:36 +0700122 char sock_name_buf[OSMO_SOCK_NAME_MAXLEN];
123 int rc;
124
125 /* FIXME: getsockname() always fails: "Bad file descriptor" */
126 rc = osmo_sock_get_name_buf(sock_name_buf, OSMO_SOCK_NAME_MAXLEN, fd->fd);
127 LOGP(DLGLOBAL, LOGL_INFO, "Closing telnet connection %s\n",
128 (rc <= 0) ? "r=NULL<->l=NULL" : sock_name_buf);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200129
130 close(fd->fd);
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200131 osmo_fd_unregister(fd);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200132
133 if (conn->dbg) {
134 log_del_target(conn->dbg);
135 talloc_free(conn->dbg);
136 }
137
138 llist_del(&conn->entry);
139 talloc_free(conn);
140 return 0;
141}
142
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200143static int client_data(struct osmo_fd *fd, unsigned int what)
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200144{
145 struct telnet_connection *conn = fd->data;
146 int rc = 0;
147
Harald Welte16886992019-03-20 10:26:39 +0100148 if (what & OSMO_FD_READ) {
149 conn->fd.when &= ~OSMO_FD_READ;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200150 rc = vty_read(conn->vty);
151 }
152
153 /* vty might have been closed from vithin vty_read() */
Holger Hans Peter Freythereb55e6a2014-07-01 19:39:26 +0200154 if (rc == -EBADF)
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200155 return rc;
156
Harald Welte16886992019-03-20 10:26:39 +0100157 if (what & OSMO_FD_WRITE) {
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200158 rc = buffer_flush_all(conn->vty->obuf, fd->fd);
159 if (rc == BUFFER_EMPTY)
Harald Welte16886992019-03-20 10:26:39 +0100160 conn->fd.when &= ~OSMO_FD_WRITE;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200161 }
162
163 return rc;
164}
165
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200166static int telnet_new_connection(struct osmo_fd *fd, unsigned int what)
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200167{
168 struct telnet_connection *connection;
169 struct sockaddr_in sockaddr;
170 socklen_t len = sizeof(sockaddr);
171 int new_connection = accept(fd->fd, (struct sockaddr*)&sockaddr, &len);
Vadim Yanitskiy74b6ff02019-07-28 00:28:36 +0700172 char sock_name_buf[OSMO_SOCK_NAME_MAXLEN];
Harald Welte4a1cb092016-11-26 00:11:53 +0100173 int rc;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200174
175 if (new_connection < 0) {
Vadim Yanitskiy0ba35732019-07-27 21:47:59 +0700176 LOGP(DLGLOBAL, LOGL_ERROR, "telnet accept failed\n");
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200177 return new_connection;
178 }
179
Vadim Yanitskiy74b6ff02019-07-28 00:28:36 +0700180 rc = osmo_sock_get_name_buf(sock_name_buf, OSMO_SOCK_NAME_MAXLEN, new_connection);
181 LOGP(DLGLOBAL, LOGL_INFO, "Accept()ed new telnet connection %s\n",
182 (rc <= 0) ? "r=NULL<->l=NULL" : sock_name_buf);
183
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200184 connection = talloc_zero(tall_telnet_ctx, struct telnet_connection);
185 connection->priv = fd->data;
186 connection->fd.data = connection;
187 connection->fd.fd = new_connection;
Harald Welte16886992019-03-20 10:26:39 +0100188 connection->fd.when = OSMO_FD_READ;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200189 connection->fd.cb = client_data;
Harald Welte4a1cb092016-11-26 00:11:53 +0100190 rc = osmo_fd_register(&connection->fd);
191 if (rc < 0) {
192 talloc_free(connection);
193 return rc;
194 }
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200195 llist_add_tail(&connection->entry, &active_connections);
196
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200197 connection->vty = vty_create(new_connection, connection);
198 if (!connection->vty) {
Vadim Yanitskiy0ba35732019-07-27 21:47:59 +0700199 LOGP(DLGLOBAL, LOGL_ERROR, "couldn't create VTY\n");
Harald Weltee8e43222018-10-21 13:22:31 +0200200 /* vty_create() is already closing the fd if it returns NULL */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200201 talloc_free(connection);
202 return -1;
203 }
204
205 return 0;
206}
207
Neels Hofmeyr63053002019-04-10 02:41:53 +0200208bool vty_is_active(struct vty *vty)
209{
210 struct telnet_connection *connection;
211 llist_for_each_entry(connection, &active_connections, entry) {
212 if (connection->vty == vty)
213 return true;
214 }
215 return false;
216}
217
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200218/*! callback from core VTY code about VTY related events */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200219void vty_event(enum event event, int sock, struct vty *vty)
220{
Vadim Yanitskiya9a8ea52019-07-27 21:58:44 +0700221 struct vty_signal_data sig_data;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200222 struct telnet_connection *connection = vty->priv;
Holger Hans Peter Freyther2c9168c2013-10-10 20:21:33 +0200223 struct osmo_fd *bfd;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200224
225 if (vty->type != VTY_TERM)
226 return;
227
Holger Hans Peter Freyther2c9168c2013-10-10 20:21:33 +0200228 sig_data.event = event;
229 sig_data.sock = sock;
230 sig_data.vty = vty;
231 osmo_signal_dispatch(SS_L_VTY, S_VTY_EVENT, &sig_data);
232
233 if (!connection)
234 return;
235
236 bfd = &connection->fd;
237
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200238 switch (event) {
239 case VTY_READ:
Harald Welte16886992019-03-20 10:26:39 +0100240 bfd->when |= OSMO_FD_READ;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200241 break;
242 case VTY_WRITE:
Harald Welte16886992019-03-20 10:26:39 +0100243 bfd->when |= OSMO_FD_WRITE;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200244 break;
245 case VTY_CLOSED:
246 /* vty layer is about to free() vty */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200247 telnet_close_client(bfd);
248 break;
249 default:
250 break;
251 }
252}
253
Harald Welte8c648252017-10-16 15:17:03 +0200254/*! Close all telnet connections and release the telnet socket */
Pau Espin Pedrol5bc9f382020-10-12 15:40:36 +0200255void telnet_exit(void)
Andreas.Eversbergdc3be0a2011-11-06 20:09:28 +0100256{
257 struct telnet_connection *tc, *tc2;
258
259 llist_for_each_entry_safe(tc, tc2, &active_connections, entry)
260 telnet_close_client(&tc->fd);
261
262 osmo_fd_unregister(&server_socket);
263 close(server_socket.fd);
264 talloc_free(tall_telnet_ctx);
265}