]> git.ipfire.org Git - thirdparty/squid.git/blame - src/icmp/Icmp.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / icmp / Icmp.cc
CommitLineData
fab463b4 1/*
fab463b4 2 * DEBUG: section 37 ICMP Routines
cc192b50 3 * AUTHOR: Duane Wessels, Amos Jeffries
fab463b4 4 *
2b6662ba 5 * SQUID Web Proxy Cache http://www.squid-cache.org/
e25c139f 6 * ----------------------------------------------------------
fab463b4 7 *
2b6662ba 8 * Squid is the result of efforts by numerous individuals from
9 * the Internet community; see the CONTRIBUTORS file for full
10 * details. Many organizations have provided support for Squid's
11 * development; see the SPONSORS file for full details. Squid is
12 * Copyrighted (C) 2001 by the Regents of the University of
13 * California; see the COPYRIGHT file for full details. Squid
14 * incorporates software developed and/or copyrighted by other
15 * sources; see the CREDITS file for full details.
fab463b4 16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
26ac0430 21 *
fab463b4 22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26ac0430 26 *
fab463b4 27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
cbdec147 29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
e25c139f 30 *
fab463b4 31 */
582c2af2 32#include "squid.h"
602d9612 33#include "Debug.h"
b826ffb5 34#include "Icmp.h"
f19d2c69 35#include "SquidTime.h"
6ffa5ad9 36
b826ffb5 37Icmp::Icmp()
cc192b50 38{
e97f40f4 39#if USE_ICMP
cc192b50 40 icmp_sock = -1;
41 icmp_ident = 0;
674ac814 42#endif
6ffa5ad9 43}
44
cc192b50 45void
b826ffb5 46Icmp::Close()
6ffa5ad9 47{
cc192b50 48#if USE_ICMP
26ac0430 49 if (icmp_sock > 0)
cc192b50 50 close(icmp_sock);
51 icmp_sock = -1;
52 icmp_ident = 0;
674ac814 53#endif
6ffa5ad9 54}
55
cc192b50 56#if USE_ICMP
62e76326 57
cc192b50 58int
b826ffb5 59Icmp::CheckSum(unsigned short *ptr, int size)
cc192b50 60{
61 long sum;
62 unsigned short oddbyte;
63 unsigned short answer;
62e76326 64
4d6662d9 65 if (!ptr) return (int)htons(0xffff); // bad input.
62e76326 66
cc192b50 67 sum = 0;
62e76326 68
cc192b50 69 while (size > 1) {
aec55359
FC
70 sum += *ptr;
71 ++ptr;
cc192b50 72 size -= 2;
16b204c4 73 }
16b204c4 74
cc192b50 75 if (size == 1) {
76 oddbyte = 0;
77 *((unsigned char *) &oddbyte) = *(unsigned char *) ptr;
78 sum += oddbyte;
79 }
bf8fe701 80
cc192b50 81 sum = (sum >> 16) + (sum & 0xffff);
82 sum += (sum >> 16);
83 answer = (unsigned short) ~sum;
84 return (answer);
e97f40f4 85}
8a6218c6 86
cc192b50 87int
b826ffb5 88Icmp::ipHops(int ttl)
16b204c4 89{
cc192b50 90 if (ttl < 33)
91 return 33 - ttl;
62e76326 92
cc192b50 93 if (ttl < 63)
94 return 63 - ttl; /* 62 = (64+60)/2 */
62e76326 95
cc192b50 96 if (ttl < 65)
97 return 65 - ttl; /* 62 = (64+60)/2 */
62e76326 98
cc192b50 99 if (ttl < 129)
100 return 129 - ttl;
16b204c4 101
cc192b50 102 if (ttl < 193)
103 return 193 - ttl;
62e76326 104
cc192b50 105 return 256 - ttl;
16b204c4 106}
107
e97f40f4 108void
09aabd84 109Icmp::Log(const Ip::Address &addr, const uint8_t type, const char* pkt_str, const int rtt, const int hops)
16b204c4 110{
cc192b50 111 debugs(42, 2, "pingerLog: " << std::setw(9) << current_time.tv_sec <<
112 "." << std::setfill('0') << std::setw(6) <<
113 current_time.tv_usec << " " << std::left << std::setfill(' ') <<
114 std::setw(45) << addr << " " << type <<
115 " " << std::setw(15) << pkt_str << " " << rtt <<
116 "ms " << hops << " hops");
16b204c4 117}
fab463b4 118
cc192b50 119#endif /* USE_ICMP */