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