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 153 154 155 156 157 158 159 160 161 162 163 164 165
|
/* $Id: icmp_addrmask.c,v 1.7 2001/10/14 18:28:27 fygrave Exp $ */
/*
** Copyright (C) 2001 Fyodor Yarochkin <fygrave@tigerteam.net>,
** Ofir Arkin <ofir@sys-security.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.
**
** All material for nonprofit, educational use only.
**
** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "xprobe.h"
rpack_t *send_icmpmaskreq_req(struct sockaddr_in to) {
int sndsock, rcvsock;
int res;
struct protoent *pe;
struct sockaddr_in from;
struct ip *ip, *rcv_ip;
struct icmp *icmp, *rcv_icmp;
unsigned char *pack, *recv_pack;
int on = 1;
int packlen;
rpack_t *retval = NULL;
if ((sndsock = socket(AF_INET, SOCK_RAW, IPPROTO_RAW)) < 0) {
perror("Can not open raw socket:");
exit(1);
}
if ((pe = getprotobyname("icmp")) == NULL) {
fprintf(stderr, "icmp: unknown protocol");
exit(1);
}
if ((rcvsock = socket(AF_INET, SOCK_RAW, pe->p_proto)) < 0) {
perror("icmp socket");
exit(1);
}
if (setsockopt(sndsock, IPPROTO_IP, IP_HDRINCL, (char *)&on,
sizeof(on)) < 0) {
perror("IP_HDRINCL");
exit(1);
}
packlen = sizeof(struct ip) + sizeof(struct icmp);
pack = (unsigned char *)calloc( packlen, 1);
if (pack == NULL) {
perror("calloc");
return NULL;
}
ip = (struct ip *)pack;
icmp = (struct icmp *)(pack + sizeof(struct ip));
make_ippkt(ip, IPPROTO_ICMP, interf.addr, to.sin_addr,
packlen, 0, 0);
icmp->icmp_type = ICMP_MASKREQ;
icmp->icmp_code = 0;
icmp->icmp_seq = rand();
icmp->icmp_cksum = in_cksum((unsigned short *)icmp,
packlen - sizeof(struct ip));
if (icmp->icmp_cksum == 0)
icmp->icmp_cksum = 0xffff;
log_message("[send]-> ICMP address mask request to %s ",
inet_ntoa(to.sin_addr));
res = sendto(sndsock, (void *)pack, packlen,
0, (struct sockaddr *)&to, sizeof(struct sockaddr));
if (res <0) {
perror("sendto:");
close(sndsock);
close(rcvsock);
free(pack);
return NULL;
}
log_message("[%d bytes] sent, waiting for response.", res);
recv_pack=calloc(PACKBUF_SIZ+1, 1);
res = wait_icmp(rcvsock, &from, recv_pack, PACKBUF_SIZ);
if (res == 0 || res < 0 ) {
if (res < 0)
perror("Receive error:");
else
log_message("Receive timeout. Quitting..\n");
close(sndsock);
close(rcvsock);
free(pack);
free(recv_pack);
return NULL;
}
#ifdef DEBUG
fprintf(stderr, "Received %d bytes packet.\n", res);
#endif
rcv_ip = (struct ip *)recv_pack;
/* sanity checks */
#ifdef DEBUG
fprintf(stderr, "hlen: %d\nlen: %d\n", rcv_ip->ip_hl<<2, rcv_ip->ip_len);
#endif
if (res < sizeof(struct ip) ||
(rcv_ip->ip_hl << 2) > res ||
#ifdef __linux__
ntohs(rcv_ip->ip_len)
#else
(rcv_ip->ip_len)
#endif
> res ) {
fprintf(stderr,"Received maliformed packet!\n");
close(sndsock);
close(rcvsock);
free(pack);
free(recv_pack);
return NULL;
}
rcv_icmp = (struct icmp *)(recv_pack + (rcv_ip->ip_hl<<2));
#ifdef DEBUG
fprintf(stderr,"type: %d code: %d\n", rcv_icmp->icmp_type, rcv_icmp->icmp_code);
#endif
if ((retval=calloc(sizeof(rpack_t), 1)) == NULL) {
perror("calloc");
exit(1);
}
retval->packsize = res;
retval->pkt = recv_pack;
retval->ip = rcv_ip;
retval->icmp = rcv_icmp;
retval->orig_pkt = NULL;
close(sndsock);
close(rcvsock);
free(pack);
return retval;
}
|