blob: c08a256ae5c484ca283292a54b7727fe1fca32b0 [file] [log] [blame]
Harald Welte3fb0b6f2010-05-19 19:02:52 +02001/* minimalistic telnet/network interface it might turn into a wire interface */
2/* (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#include <sys/socket.h>
22#include <netinet/in.h>
23#include <stdlib.h>
24#include <stdio.h>
25#include <string.h>
26#include <unistd.h>
27
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010028#include <osmocom/core/msgb.h>
29#include <osmocom/core/talloc.h>
30#include <osmocom/core/logging.h>
Harald Welte3fb0b6f2010-05-19 19:02:52 +020031
32#include <osmocom/vty/telnet_interface.h>
33#include <osmocom/vty/buffer.h>
Holger Hans Peter Freyther2e228fc2010-09-11 13:41:41 +080034#include <osmocom/vty/command.h>
Harald Welte3fb0b6f2010-05-19 19:02:52 +020035
36/* per connection data */
37LLIST_HEAD(active_connections);
38
39static void *tall_telnet_ctx;
40
41/* per network data */
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +020042static int telnet_new_connection(struct osmo_fd *fd, unsigned int what);
Harald Welte3fb0b6f2010-05-19 19:02:52 +020043
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +020044static struct osmo_fd server_socket = {
Harald Welte3fb0b6f2010-05-19 19:02:52 +020045 .when = BSC_FD_READ,
46 .cb = telnet_new_connection,
47 .priv_nr = 0,
48};
49
50int telnet_init(void *tall_ctx, void *priv, int port)
51{
52 struct sockaddr_in sock_addr;
53 int fd, rc, on = 1;
54
55 tall_telnet_ctx = talloc_named_const(tall_ctx, 1,
56 "telnet_connection");
57
58 fd = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
59
60 if (fd < 0) {
61 LOGP(0, LOGL_ERROR, "Telnet interface socket creation failed\n");
62 return fd;
63 }
64
65 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
66
67 memset(&sock_addr, 0, sizeof(sock_addr));
68 sock_addr.sin_family = AF_INET;
69 sock_addr.sin_port = htons(port);
70 sock_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
71
72 rc = bind(fd, (struct sockaddr*)&sock_addr, sizeof(sock_addr));
Sylvain Munaut4a4f96d2011-01-03 22:19:40 +010073 if (rc < 0) {
Harald Welte3fb0b6f2010-05-19 19:02:52 +020074 LOGP(0, LOGL_ERROR, "Telnet interface failed to bind\n");
75 close(fd);
76 return rc;
77 }
78
79 rc = listen(fd, 0);
80 if (rc < 0) {
81 LOGP(0, LOGL_ERROR, "Telnet interface failed to listen\n");
82 close(fd);
83 return rc;
84 }
85
86 server_socket.data = priv;
87 server_socket.fd = fd;
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +020088 osmo_fd_register(&server_socket);
Harald Welte3fb0b6f2010-05-19 19:02:52 +020089
90 return 0;
91}
92
Holger Hans Peter Freyther2e228fc2010-09-11 13:41:41 +080093extern struct host host;
Harald Welte3fb0b6f2010-05-19 19:02:52 +020094
95static void print_welcome(int fd)
96{
97 int ret;
Harald Welteb62b04b2011-05-22 19:15:07 +020098 static const char *msg1 = "Welcome to the ";
99 static const char *msg2 = " control interface\r\n";
100 char *app_name = "<unnamed>";
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200101
Harald Welteb62b04b2011-05-22 19:15:07 +0200102 if (host.app_info->name)
103 app_name = host.app_info->name;
104
105 ret = write(fd, msg1, strlen(msg1));
106 ret = write(fd, app_name, strlen(app_name));
107 ret = write(fd, msg2, strlen(msg2));
Holger Hans Peter Freyther2e228fc2010-09-11 13:41:41 +0800108
109 if (host.app_info->copyright)
110 ret = write(fd, host.app_info->copyright, strlen(host.app_info->copyright));
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200111}
112
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200113int telnet_close_client(struct osmo_fd *fd)
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200114{
115 struct telnet_connection *conn = (struct telnet_connection*)fd->data;
116
117 close(fd->fd);
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200118 osmo_fd_unregister(fd);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200119
120 if (conn->dbg) {
121 log_del_target(conn->dbg);
122 talloc_free(conn->dbg);
123 }
124
125 llist_del(&conn->entry);
126 talloc_free(conn);
127 return 0;
128}
129
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200130static int client_data(struct osmo_fd *fd, unsigned int what)
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200131{
132 struct telnet_connection *conn = fd->data;
133 int rc = 0;
134
135 if (what & BSC_FD_READ) {
136 conn->fd.when &= ~BSC_FD_READ;
137 rc = vty_read(conn->vty);
138 }
139
140 /* vty might have been closed from vithin vty_read() */
141 if (!conn->vty)
142 return rc;
143
144 if (what & BSC_FD_WRITE) {
145 rc = buffer_flush_all(conn->vty->obuf, fd->fd);
146 if (rc == BUFFER_EMPTY)
147 conn->fd.when &= ~BSC_FD_WRITE;
148 }
149
150 return rc;
151}
152
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200153static int telnet_new_connection(struct osmo_fd *fd, unsigned int what)
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200154{
155 struct telnet_connection *connection;
156 struct sockaddr_in sockaddr;
157 socklen_t len = sizeof(sockaddr);
158 int new_connection = accept(fd->fd, (struct sockaddr*)&sockaddr, &len);
159
160 if (new_connection < 0) {
161 LOGP(0, LOGL_ERROR, "telnet accept failed\n");
162 return new_connection;
163 }
164
165 connection = talloc_zero(tall_telnet_ctx, struct telnet_connection);
166 connection->priv = fd->data;
167 connection->fd.data = connection;
168 connection->fd.fd = new_connection;
169 connection->fd.when = BSC_FD_READ;
170 connection->fd.cb = client_data;
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200171 osmo_fd_register(&connection->fd);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200172 llist_add_tail(&connection->entry, &active_connections);
173
174 print_welcome(new_connection);
175
176 connection->vty = vty_create(new_connection, connection);
177 if (!connection->vty) {
178 LOGP(0, LOGL_ERROR, "couldn't create VTY\n");
179 close(new_connection);
180 talloc_free(connection);
181 return -1;
182 }
183
184 return 0;
185}
186
187/* callback from VTY code */
188void vty_event(enum event event, int sock, struct vty *vty)
189{
190 struct telnet_connection *connection = vty->priv;
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200191 struct osmo_fd *bfd = &connection->fd;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200192
193 if (vty->type != VTY_TERM)
194 return;
195
196 switch (event) {
197 case VTY_READ:
198 bfd->when |= BSC_FD_READ;
199 break;
200 case VTY_WRITE:
201 bfd->when |= BSC_FD_WRITE;
202 break;
203 case VTY_CLOSED:
204 /* vty layer is about to free() vty */
205 connection->vty = NULL;
206 telnet_close_client(bfd);
207 break;
208 default:
209 break;
210 }
211}
212