1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
/*
Mac-Telnet - Connect to RouterOS or mactelnetd devices via MAC address
Copyright (C) 2010, Håkon Nessjøen <haakon.nessjoen@gmail.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <libintl.h>
#include <locale.h>
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <netinet/ether.h>
#include <string.h>
#include "protocol.h"
#include "config.h"
#define _(String) gettext (String)
/* This file is also used for the -l option in mactelnet */
#ifndef FROM_MACTELNET
/* Protocol data direction, not used here, but obligatory for protocol.c */
unsigned char mt_direction_fromserver = 0;
int main(int argc, char **argv) {
int batch_mode = 0;
#else
void sig_alarm(int signo)
{
exit(0);
}
int mndp(int timeout, int batch_mode) {
#endif
int sock,result;
int optval = 1;
struct sockaddr_in si_me, si_remote;
unsigned char buff[MT_PACKET_LEN];
#ifdef FROM_MACTELNET
/* mactelnet.c has this set to 1 */
mt_direction_fromserver = 0;
signal(SIGALRM, sig_alarm);
#endif
setlocale(LC_ALL, "");
bindtextdomain("mactelnet","/usr/share/locale");
textdomain("mactelnet");
/* Open a UDP socket handle */
sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
/* Set initialize address/port */
memset((char *) &si_me, 0, sizeof(si_me));
si_me.sin_family = AF_INET;
si_me.sin_port = htons(MT_MNDP_PORT);
si_me.sin_addr.s_addr = htonl(INADDR_ANY);
setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof (optval));
/* Bind to specified address/port */
if (bind(sock, (struct sockaddr *)&si_me, sizeof(si_me))==-1) {
fprintf(stderr, _("Error binding to %s:%d\n"), inet_ntoa(si_me.sin_addr), MT_MNDP_PORT);
return 1;
}
/* Write informative message to STDERR to make it easier to use the output in simple scripts */
fprintf(stderr, _("Searching for MikroTik routers... Abort with CTRL+C.\n"));
/* Set the socket to allow sending broadcast packets */
if (setsockopt(sock, SOL_SOCKET, SO_BROADCAST, &optval, sizeof (optval))==-1) {
fprintf(stderr, _("Unable to send broadcast packets: Operating in receive only mode.\n"));
} else {
/* Request routers identify themselves */
unsigned int message = 0;
memset((char *) &si_remote, 0, sizeof(si_remote));
si_remote.sin_family = AF_INET;
si_remote.sin_port = htons(MT_MNDP_PORT);
si_remote.sin_addr.s_addr = htonl(INADDR_BROADCAST);
if (sendto (sock, &message, sizeof (message), 0, (struct sockaddr *)&si_remote, sizeof(si_remote))==-1) {
fprintf(stderr, _("Unable to send broadcast packet: Operating in receive only mode.\n"));
}
}
if (batch_mode) {
printf("%s\n", _("MAC-Address,Identity,Platform,Version,Hardware,Uptime,Softid,Ifname"));
} else {
printf("\n\E[1m%-17s %s\E[m\n", _("MAC-Address"), _("Identity (platform version hardware) uptime"));
}
#ifdef FROM_MACTELNET
if (timeout > 0) {
alarm(timeout);
}
#endif
while(1) {
struct mt_mndp_info *packet;
/* Wait for a UDP packet */
result = recvfrom(sock, buff, MT_PACKET_LEN, 0, 0, 0);
if (result < 0) {
fprintf(stderr, _("An error occured. aborting\n"));
exit(1);
}
/* Parse MNDP packet */
packet = parse_mndp(buff, result);
if (packet != NULL && !batch_mode) {
/* Print it */
printf("%-17s %s", ether_ntoa((struct ether_addr *)packet->address), packet->identity);
if (packet->platform != NULL) {
printf(" (%s %s %s)", packet->platform, packet->version, packet->hardware);
}
if (packet->uptime > 0) {
printf(_(" up %d days %d hours"), packet->uptime / 86400, packet->uptime % 86400 / 3600);
}
if (packet->softid != NULL) {
printf(" %s", packet->softid);
}
if (packet->ifname != NULL) {
printf(" %s", packet->ifname);
}
putchar('\n');
} else if (packet != NULL) {
/* Print it */
printf("'%s','%s',", ether_ntoa((struct ether_addr *)packet->address), packet->identity);
printf("'%s','%s','%s',", packet->platform, packet->version, packet->hardware);
printf("'%d','%s','%s'", packet->uptime, packet->softid, packet->ifname);
putchar('\n');
fflush(stdout);
}
}
/* We'll never get here.. */
return 0;
}
|