blob: bc91ca33367e708ebd4811121c21cfd5f7b73e29 [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* 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
28#include <openbsc/telnet_interface.h>
29#include <openbsc/gsm_subscriber.h>
30#include <openbsc/chan_alloc.h>
31#include <openbsc/gsm_04_08.h>
32#include <openbsc/gsm_04_11.h>
33#include <openbsc/msgb.h>
34#include <openbsc/abis_rsl.h>
35#include <openbsc/paging.h>
36#include <openbsc/signal.h>
Harald Weltea8379772009-06-20 22:36:41 +020037#include <openbsc/talloc.h>
Harald Weltecf2ec4a2009-12-17 23:10:46 +010038#include <openbsc/debug.h>
Harald Welte59b04682009-06-10 05:40:52 +080039
40#include <vty/buffer.h>
41
42#define WRITE_CONNECTION(fd, msg...) \
43 int ret; \
44 char buf[4096]; \
45 snprintf(buf, sizeof(buf), msg); \
46 ret = write(fd, buf, strlen(buf));
47
48
49/* per connection data */
50LLIST_HEAD(active_connections);
51
Harald Weltea8379772009-06-20 22:36:41 +020052static void *tall_telnet_ctx;
53
Harald Welte59b04682009-06-10 05:40:52 +080054/* per network data */
55static int telnet_new_connection(struct bsc_fd *fd, unsigned int what);
Harald Welte59b04682009-06-10 05:40:52 +080056
57static struct bsc_fd server_socket = {
58 .when = BSC_FD_READ,
59 .cb = telnet_new_connection,
60 .priv_nr = 0,
61};
62
63void telnet_init(struct gsm_network *network, int port) {
64 struct sockaddr_in sock_addr;
65 int fd, on = 1;
66
Harald Weltea8379772009-06-20 22:36:41 +020067 tall_telnet_ctx = talloc_named_const(tall_bsc_ctx, 1,
68 "telnet_connection");
69
Harald Welte59b04682009-06-10 05:40:52 +080070 bsc_vty_init(network);
71
72 fd = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
73
74 if (fd < 0) {
Harald Weltecf2ec4a2009-12-17 23:10:46 +010075 LOGP(DNM, LOGL_ERROR, "Telnet interface socket creation failed\n");
Harald Welte59b04682009-06-10 05:40:52 +080076 return;
77 }
78
79 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
80
81 memset(&sock_addr, 0, sizeof(sock_addr));
82 sock_addr.sin_family = AF_INET;
83 sock_addr.sin_port = htons(port);
84 sock_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
85
86 if (bind(fd, (struct sockaddr*)&sock_addr, sizeof(sock_addr)) < 0) {
Harald Welte36ab5452009-12-21 23:36:45 +010087 LOGP(DNM, LOGL_ERROR, "Telnet interface failed to bind\n");
Harald Welte59b04682009-06-10 05:40:52 +080088 return;
89 }
90
91 if (listen(fd, 0) < 0) {
Harald Welte36ab5452009-12-21 23:36:45 +010092 LOGP(DNM, LOGL_ERROR, "Telnet interface failed to listen\n");
Harald Welte59b04682009-06-10 05:40:52 +080093 return;
94 }
95
96 server_socket.data = network;
97 server_socket.fd = fd;
98 bsc_register_fd(&server_socket);
Harald Welte59b04682009-06-10 05:40:52 +080099}
100
101static void print_welcome(int fd) {
102 int ret;
103 static char *msg =
104 "Welcome to the OpenBSC Control interface\n"
105 "Copyright (C) 2008, 2009 Harald Welte\n"
106 "Contributions by Daniel Willmann, Jan Lübbe, "
107 "Stefan Schmidt, Holger Freyther\n\n"
108 "License GPLv2+: GNU GPL version 2 or later "
109 "<http://gnu.org/licenses/gpl.html>\n"
110 "This is free software: you are free to change "
111 "and redistribute it.\n"
112 "There is NO WARRANTY, to the extent permitted "
113 "by law.\nType \"help\" to get a short introduction.\n";
114
115 ret = write(fd, msg, strlen(msg));
116}
117
118int telnet_close_client(struct bsc_fd *fd) {
119 struct telnet_connection *conn = (struct telnet_connection*)fd->data;
120
121 close(fd->fd);
122 bsc_unregister_fd(fd);
123 llist_del(&conn->entry);
Harald Welte49a84052009-06-22 01:36:25 +0200124 talloc_free(conn);
Harald Welte59b04682009-06-10 05:40:52 +0800125 return 0;
126}
127
128static int client_data(struct bsc_fd *fd, unsigned int what)
129{
130 struct telnet_connection *conn = fd->data;
131 int rc = 0;
132
133 if (what & BSC_FD_READ) {
134 conn->fd.when &= ~BSC_FD_READ;
135 rc = vty_read(conn->vty);
136 }
137
Harald Welted1bc77e2009-08-07 00:31:23 +0200138 /* vty might have been closed from vithin vty_read() */
139 if (!conn->vty)
140 return rc;
141
Harald Welte59b04682009-06-10 05:40:52 +0800142 if (what & BSC_FD_WRITE) {
143 rc = buffer_flush_all(conn->vty->obuf, fd->fd);
144 if (rc == BUFFER_EMPTY)
145 conn->fd.when &= ~BSC_FD_WRITE;
146 }
147
148 return rc;
149}
150
151static int telnet_new_connection(struct bsc_fd *fd, unsigned int what) {
152 struct telnet_connection *connection;
153 struct sockaddr_in sockaddr;
154 socklen_t len = sizeof(sockaddr);
155 int new_connection = accept(fd->fd, (struct sockaddr*)&sockaddr, &len);
156
157 if (new_connection < 0) {
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100158 LOGP(DNM, LOGL_ERROR, "telnet accept failed\n");
Harald Welte59b04682009-06-10 05:40:52 +0800159 return -1;
160 }
161
162
Harald Welte857e00d2009-06-26 20:25:23 +0200163 connection = talloc_zero(tall_telnet_ctx, struct telnet_connection);
Harald Welte59b04682009-06-10 05:40:52 +0800164 connection->network = (struct gsm_network*)fd->data;
165 connection->fd.data = connection;
166 connection->fd.fd = new_connection;
167 connection->fd.when = BSC_FD_READ;
168 connection->fd.cb = client_data;
Harald Welte59b04682009-06-10 05:40:52 +0800169 bsc_register_fd(&connection->fd);
170 llist_add_tail(&connection->entry, &active_connections);
171
172 print_welcome(new_connection);
173
174 connection->vty = vty_create(new_connection, connection);
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100175 if (!connection->vty) {
176 LOGP(DNM, LOGL_ERROR, "couldn't create VTY\n");
Harald Welte59b04682009-06-10 05:40:52 +0800177 return -1;
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100178 }
Harald Welte59b04682009-06-10 05:40:52 +0800179
180 return 0;
181}
182
183/* callback from VTY code */
184void vty_event(enum event event, int sock, struct vty *vty)
185{
186 struct telnet_connection *connection = vty->priv;
187 struct bsc_fd *bfd = &connection->fd;
188
Harald Welted1bc77e2009-08-07 00:31:23 +0200189 if (vty->type != VTY_TERM)
190 return;
191
Harald Welte59b04682009-06-10 05:40:52 +0800192 switch (event) {
193 case VTY_READ:
194 bfd->when |= BSC_FD_READ;
195 break;
196 case VTY_WRITE:
197 bfd->when |= BSC_FD_WRITE;
198 break;
Harald Welted1bc77e2009-08-07 00:31:23 +0200199 case VTY_CLOSED:
200 /* vty layer is about to free() vty */
201 connection->vty = NULL;
202 telnet_close_client(bfd);
203 break;
Harald Welte59b04682009-06-10 05:40:52 +0800204 default:
205 break;
206 }
207}
208