blob: d812b17df328b748dc196f8d0fc225c867e7f9db [file] [log] [blame]
Holger Freyther219518d2009-01-02 22:04:43 +00001/* 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>
Harald Welte12247c62009-05-21 07:23:02 +000023#include <stdlib.h>
Holger Freyther219518d2009-01-02 22:04:43 +000024#include <stdio.h>
25#include <string.h>
26#include <unistd.h>
27
28#include <openbsc/telnet_interface.h>
Holger Freytherae61cae2009-01-04 03:46:01 +000029#include <openbsc/gsm_subscriber.h>
Holger Freytherf87573d2009-01-04 03:49:41 +000030#include <openbsc/chan_alloc.h>
Holger Freyther3ae8fd22009-01-04 03:50:40 +000031#include <openbsc/gsm_04_08.h>
Holger Freyther9b177762009-02-16 19:07:18 +000032#include <openbsc/gsm_04_11.h>
Holger Freyther868b8cd2009-01-04 03:57:27 +000033#include <openbsc/msgb.h>
Holger Freyther7448a532009-01-04 20:18:23 +000034#include <openbsc/abis_rsl.h>
Harald Welte38c2f132009-01-06 23:10:57 +000035#include <openbsc/paging.h>
Holger Freyther7aaf1122009-02-14 22:51:13 +000036#include <openbsc/signal.h>
Holger Freyther219518d2009-01-02 22:04:43 +000037
Harald Weltec63e51d2009-03-10 19:46:16 +000038#include <vty/buffer.h>
39
Holger Freytherae61cae2009-01-04 03:46:01 +000040#define WRITE_CONNECTION(fd, msg...) \
41 int ret; \
42 char buf[4096]; \
43 snprintf(buf, sizeof(buf), msg); \
44 ret = write(fd, buf, strlen(buf));
45
46
Holger Freyther219518d2009-01-02 22:04:43 +000047/* per connection data */
48LLIST_HEAD(active_connections);
49
50/* per network data */
51static int telnet_new_connection(struct bsc_fd *fd, unsigned int what);
Harald Welte595ad7b2009-02-16 22:05:44 +000052static int telnet_paging_callback(unsigned int subsys, unsigned int signal,
53 void *handler_data, void *signal_data);
54static int telnet_sms_callback(unsigned int subsys, unsigned int signal,
55 void *handler_data, void *signal_data);
Holger Freyther7aaf1122009-02-14 22:51:13 +000056
Holger Freyther219518d2009-01-02 22:04:43 +000057static 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;
Holger Freytherf0776892009-02-03 20:49:51 +000065 int fd, on = 1;
Holger Freyther219518d2009-01-02 22:04:43 +000066
Harald Welte404cdd82009-03-10 12:21:45 +000067 bsc_vty_init(network);
68
Holger Freyther219518d2009-01-02 22:04:43 +000069 fd = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
70
71 if (fd < 0) {
72 perror("Telnet interface socket creation failed");
73 return;
74 }
75
Holger Freytherf0776892009-02-03 20:49:51 +000076 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
77
Holger Freyther219518d2009-01-02 22:04:43 +000078 memset(&sock_addr, 0, sizeof(sock_addr));
79 sock_addr.sin_family = AF_INET;
80 sock_addr.sin_port = htons(port);
81 sock_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
82
83 if (bind(fd, (struct sockaddr*)&sock_addr, sizeof(sock_addr)) < 0) {
84 perror("Telnet interface failed to bind");
85 return;
86 }
87
88 if (listen(fd, 0) < 0) {
89 perror("Telnet interface failed to listen");
90 return;
91 }
92
93 server_socket.data = network;
94 server_socket.fd = fd;
95 bsc_register_fd(&server_socket);
Holger Freyther7aaf1122009-02-14 22:51:13 +000096
Holger Freyther9b177762009-02-16 19:07:18 +000097 /* register callbacks */
Harald Welte404cdd82009-03-10 12:21:45 +000098#if 0
Harald Welte595ad7b2009-02-16 22:05:44 +000099 register_signal_handler(SS_PAGING, telnet_paging_callback, network);
100 register_signal_handler(SS_SMS, telnet_sms_callback, network);
Harald Welte404cdd82009-03-10 12:21:45 +0000101#endif
Holger Freyther219518d2009-01-02 22:04:43 +0000102}
103
104static void print_welcome(int fd) {
105 int ret;
106 static char *msg =
107 "Welcome to the OpenBSC Control interface\n"
108 "Copyright (C) 2008, 2009 Harald Welte\n"
109 "Contributions by Daniel Willmann, Jan Lübbe, "
110 "Stefan Schmidt, Holger Freyther\n\n"
111 "License GPLv2+: GNU GPL version 2 or later "
112 "<http://gnu.org/licenses/gpl.html>\n"
113 "This is free software: you are free to change "
114 "and redistribute it.\n"
115 "There is NO WARRANTY, to the extent permitted "
116 "by law.\nType \"help\" to get a short introduction.\n";
117
118 ret = write(fd, msg, strlen(msg));
119}
120
121int telnet_close_client(struct bsc_fd *fd) {
122 struct telnet_connection *conn = (struct telnet_connection*)fd->data;
123
124 close(fd->fd);
125 bsc_unregister_fd(fd);
126 llist_del(&conn->entry);
127 free(conn);
128 return 0;
129}
130
Harald Welte404cdd82009-03-10 12:21:45 +0000131static int client_data(struct bsc_fd *fd, unsigned int what)
132{
133 struct telnet_connection *conn = fd->data;
Harald Weltec63e51d2009-03-10 19:46:16 +0000134 int rc;
135
136 if (what & BSC_FD_READ) {
137 conn->fd.when &= ~BSC_FD_READ;
138 rc = vty_read(conn->vty);
139 }
140
141 if (what & BSC_FD_WRITE) {
142 rc = buffer_flush_all(conn->vty->obuf, fd->fd);
143 if (rc == BUFFER_EMPTY)
144 conn->fd.when &= ~BSC_FD_WRITE;
145 }
146
147 return rc;
Holger Freyther219518d2009-01-02 22:04:43 +0000148}
149
150static int telnet_new_connection(struct bsc_fd *fd, unsigned int what) {
151 struct telnet_connection *connection;
152 struct sockaddr_in sockaddr;
153 socklen_t len = sizeof(sockaddr);
154 int new_connection = accept(fd->fd, (struct sockaddr*)&sockaddr, &len);
155
156 if (new_connection < 0) {
157 perror("telnet accept failed");
158 return -1;
159 }
160
161
162 connection = (struct telnet_connection*)malloc(sizeof(*connection));
163 memset(connection, 0, sizeof(*connection));
164 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;
Holger Freytherf87573d2009-01-04 03:49:41 +0000169 connection->bts = 0;
Holger Freyther219518d2009-01-02 22:04:43 +0000170 bsc_register_fd(&connection->fd);
171 llist_add_tail(&connection->entry, &active_connections);
172
173 print_welcome(new_connection);
174
Harald Weltec63e51d2009-03-10 19:46:16 +0000175 connection->vty = vty_create(new_connection, connection);
Harald Welte404cdd82009-03-10 12:21:45 +0000176 if (!connection->vty)
177 return -1;
178
Holger Freyther219518d2009-01-02 22:04:43 +0000179 return 0;
180}
Holger Freyther7aaf1122009-02-14 22:51:13 +0000181
Harald Weltec63e51d2009-03-10 19:46:16 +0000182/* callback from VTY code */
183void vty_event(enum event event, int sock, struct vty *vty)
184{
185 struct telnet_connection *connection = vty->priv;
186 struct bsc_fd *bfd = &connection->fd;
187
188 switch (event) {
189 case VTY_READ:
190 bfd->when |= BSC_FD_READ;
191 break;
192 case VTY_WRITE:
193 bfd->when |= BSC_FD_WRITE;
194 break;
195 default:
196 break;
197 }
198}
199
Harald Welte404cdd82009-03-10 12:21:45 +0000200#if 0
Harald Welte595ad7b2009-02-16 22:05:44 +0000201static int telnet_paging_callback(unsigned int subsys, unsigned int singal,
202 void *handler_data, void *signal_data)
Holger Freyther7aaf1122009-02-14 22:51:13 +0000203{
Harald Welte595ad7b2009-02-16 22:05:44 +0000204 struct paging_signal_data *paging = signal_data;
Holger Freyther7aaf1122009-02-14 22:51:13 +0000205 struct telnet_connection *con;
206
207 llist_for_each_entry(con, &active_connections, entry) {
208 if (paging->lchan) {
209 WRITE_CONNECTION(con->fd.fd, "Paging succeeded\n");
210 show_lchan(con->fd.fd, paging->lchan);
211 } else {
212 WRITE_CONNECTION(con->fd.fd, "Paging failed for subscriber: %s/%s/%s\n",
213 paging->subscr->imsi,
214 paging->subscr->tmsi,
215 paging->subscr->name);
216 }
217 }
218
219 return 0;
220}
Holger Freyther9b177762009-02-16 19:07:18 +0000221
Harald Welte595ad7b2009-02-16 22:05:44 +0000222static int telnet_sms_callback(unsigned int subsys, unsigned int signal,
223 void *handler_data, void *signal_data)
Holger Freyther9b177762009-02-16 19:07:18 +0000224{
Harald Welte595ad7b2009-02-16 22:05:44 +0000225 struct sms_submit *sms = signal_data;
Holger Freyther9b177762009-02-16 19:07:18 +0000226 struct telnet_connection *con;
227
228 llist_for_each_entry(con, &active_connections, entry) {
Harald Welte595ad7b2009-02-16 22:05:44 +0000229 WRITE_CONNECTION(con->fd.fd, "Incoming SMS: %s\n", sms->user_data);
Holger Freyther9b177762009-02-16 19:07:18 +0000230 }
231
232 return 0;
233}
Harald Welte404cdd82009-03-10 12:21:45 +0000234#endif