blob: bb9819ed1f5e3b4826bf8721acfc10f295bc5842 [file] [log] [blame]
Harald Welte9af6ddf2011-01-01 15:25:50 +01001/* ip.access nanoBTS configuration tool */
2
3/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 */
Harald Welte923a3bd2009-02-14 12:51:36 +000020
21#include <unistd.h>
22#include <stdio.h>
23#include <stdlib.h>
Harald Welte923a3bd2009-02-14 12:51:36 +000024#include <sys/socket.h>
25#include <netinet/in.h>
26#include <arpa/inet.h>
27
28
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010029#include <osmocom/core/select.h>
30#include <osmocom/core/timer.h>
Harald Welte4f361fc2009-02-15 15:32:53 +000031#include <openbsc/ipaccess.h>
Harald Welte37881962009-04-30 15:15:37 +000032#include <openbsc/gsm_data.h>
33
Harald Weltee26d0792009-08-08 11:47:20 +020034static int udp_sock(const char *ifname)
Harald Welte923a3bd2009-02-14 12:51:36 +000035{
36 int fd, rc, bc = 1;
37 struct sockaddr_in sa;
38
39 fd = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
40 if (fd < 0)
41 return fd;
42
Harald Weltee26d0792009-08-08 11:47:20 +020043 if (ifname) {
44 rc = setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, ifname,
45 strlen(ifname));
46 if (rc < 0)
47 goto err;
48 }
49
Holger Hans Peter Freytherd5c270e2013-07-03 10:19:37 +020050 memset(&sa, 0, sizeof(sa));
Harald Welte923a3bd2009-02-14 12:51:36 +000051 sa.sin_family = AF_INET;
52 sa.sin_port = htons(3006);
53 sa.sin_addr.s_addr = INADDR_ANY;
Harald Welte923a3bd2009-02-14 12:51:36 +000054
55 rc = bind(fd, (struct sockaddr *)&sa, sizeof(sa));
56 if (rc < 0)
57 goto err;
58
59 rc = setsockopt(fd, SOL_SOCKET, SO_BROADCAST, &bc, sizeof(bc));
60 if (rc < 0)
61 goto err;
62
63#if 0
Harald Welte81cff3c2009-08-08 12:14:53 +020064 /* we cannot bind, since the response packets don't come from
65 * the broadcast address */
66 sa.sin_family = AF_INET;
67 sa.sin_port = htons(3006);
68 inet_aton("255.255.255.255", &sa.sin_addr);
69
Harald Welte923a3bd2009-02-14 12:51:36 +000070 rc = connect(fd, (struct sockaddr *)&sa, sizeof(sa));
71 if (rc < 0)
72 goto err;
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +020073#endif
Harald Welte923a3bd2009-02-14 12:51:36 +000074 return fd;
75
76err:
77 close(fd);
78 return rc;
79}
80
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +020081const unsigned char find_pkt[] = { 0x00, 0x0b+8, IPAC_PROTO_IPACCESS, 0x00,
Harald Welte4f361fc2009-02-15 15:32:53 +000082 IPAC_MSGT_ID_GET,
83 0x01, IPAC_IDTAG_MACADDR,
84 0x01, IPAC_IDTAG_IPADDR,
85 0x01, IPAC_IDTAG_UNIT,
86 0x01, IPAC_IDTAG_LOCATION1,
87 0x01, IPAC_IDTAG_LOCATION2,
88 0x01, IPAC_IDTAG_EQUIPVERS,
89 0x01, IPAC_IDTAG_SWVERSION,
90 0x01, IPAC_IDTAG_UNITNAME,
91 0x01, IPAC_IDTAG_SERNR,
92 };
Harald Welte923a3bd2009-02-14 12:51:36 +000093
94
95static int bcast_find(int fd)
96{
97 struct sockaddr_in sa;
98
99 sa.sin_family = AF_INET;
100 sa.sin_port = htons(3006);
101 inet_aton("255.255.255.255", &sa.sin_addr);
102
103 return sendto(fd, find_pkt, sizeof(find_pkt), 0, (struct sockaddr *) &sa, sizeof(sa));
104}
105
106static int parse_response(unsigned char *buf, int len)
107{
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200108 uint8_t t_len;
109 uint8_t t_tag;
110 uint8_t *cur = buf;
Harald Welte923a3bd2009-02-14 12:51:36 +0000111
Harald Welte923a3bd2009-02-14 12:51:36 +0000112 while (cur < buf + len) {
113 t_len = *cur++;
114 t_tag = *cur++;
115
Pablo Neira Ayuso23b1b802011-04-11 16:32:58 +0200116 printf("%s='%s' ", ipaccess_idtag_name(t_tag), cur);
Harald Welte923a3bd2009-02-14 12:51:36 +0000117
118 cur += t_len;
119 }
120 printf("\n");
121 return 0;
122}
123
124static int read_response(int fd)
125{
126 unsigned char buf[255];
127 struct sockaddr_in sa;
128 int len;
129 socklen_t sa_len = sizeof(sa);
130
131 len = recvfrom(fd, buf, sizeof(buf), 0, (struct sockaddr *)&sa, &sa_len);
132 if (len < 0)
133 return len;
134
Harald Welte81cff3c2009-08-08 12:14:53 +0200135 /* 2 bytes length, 1 byte protocol (0xfe) */
136 if (buf[2] != 0xfe)
137 return 0;
138
139 if (buf[4] != IPAC_MSGT_ID_RESP)
140 return 0;
141
Harald Welte4593ff32009-05-01 14:53:36 +0000142 return parse_response(buf+6, len-6);
Harald Welte923a3bd2009-02-14 12:51:36 +0000143}
144
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200145static int bfd_cb(struct osmo_fd *bfd, unsigned int flags)
Harald Welte923a3bd2009-02-14 12:51:36 +0000146{
147 if (flags & BSC_FD_READ)
148 return read_response(bfd->fd);
149 if (flags & BSC_FD_WRITE) {
150 bfd->when &= ~BSC_FD_WRITE;
151 return bcast_find(bfd->fd);
152 }
153 return 0;
154}
155
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200156static struct osmo_timer_list timer;
Harald Welte923a3bd2009-02-14 12:51:36 +0000157
158static void timer_cb(void *_data)
159{
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200160 struct osmo_fd *bfd = _data;
Harald Welte923a3bd2009-02-14 12:51:36 +0000161
162 bfd->when |= BSC_FD_WRITE;
163
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200164 osmo_timer_schedule(&timer, 5, 0);
Harald Welte923a3bd2009-02-14 12:51:36 +0000165}
166
167int main(int argc, char **argv)
168{
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200169 struct osmo_fd bfd;
Holger Hans Peter Freytherd3080be2011-05-14 19:46:05 +0200170 char *ifname = NULL;
Harald Welte923a3bd2009-02-14 12:51:36 +0000171 int rc;
172
173 printf("ipaccess-find (C) 2009 by Harald Welte\n");
174 printf("This is FREE SOFTWARE with ABSOLUTELY NO WARRANTY\n\n");
175
Harald Welte042401c2009-06-29 10:43:04 +0200176 if (argc < 2) {
Harald Weltee26d0792009-08-08 11:47:20 +0200177 fprintf(stdout, "you might need to specify the outgoing\n"
178 " network interface, e.g. ``%s eth0''\n", argv[0]);
Holger Hans Peter Freyther1e9ae4b2011-05-17 20:34:53 +0200179 } else {
Holger Hans Peter Freytherd3080be2011-05-14 19:46:05 +0200180 ifname = argv[1];
Harald Welte042401c2009-06-29 10:43:04 +0200181 }
182
Harald Welte923a3bd2009-02-14 12:51:36 +0000183 bfd.cb = bfd_cb;
184 bfd.when = BSC_FD_READ | BSC_FD_WRITE;
Harald Weltee26d0792009-08-08 11:47:20 +0200185 bfd.fd = udp_sock(ifname);
Harald Welte042401c2009-06-29 10:43:04 +0200186 if (bfd.fd < 0) {
187 perror("Cannot create local socket for broadcast udp");
188 exit(1);
189 }
Harald Welte923a3bd2009-02-14 12:51:36 +0000190
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200191 osmo_fd_register(&bfd);
Harald Welte923a3bd2009-02-14 12:51:36 +0000192
193 timer.cb = timer_cb;
194 timer.data = &bfd;
195
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200196 osmo_timer_schedule(&timer, 5, 0);
Harald Welte923a3bd2009-02-14 12:51:36 +0000197
198 printf("Trying to find ip.access BTS by broadcast UDP...\n");
199
200 while (1) {
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200201 rc = osmo_select_main(0);
Harald Welte923a3bd2009-02-14 12:51:36 +0000202 if (rc < 0)
203 exit(3);
204 }
205
206 exit(0);
207}
208