]> git.ipfire.org Git - thirdparty/squid.git/blame - src/send-announce.cc
audit and I/O transition call bits
[thirdparty/squid.git] / src / send-announce.cc
CommitLineData
d2af9477 1
7d49daab 2/*
262a0e14 3 * $Id$
30a4f2a8 4 *
5 * DEBUG: section 27 Cache Announcer
6 * AUTHOR: Duane Wessels
7 *
2b6662ba 8 * SQUID Web Proxy Cache http://www.squid-cache.org/
e25c139f 9 * ----------------------------------------------------------
30a4f2a8 10 *
2b6662ba 11 * Squid is the result of efforts by numerous individuals from
12 * the Internet community; see the CONTRIBUTORS file for full
13 * details. Many organizations have provided support for Squid's
14 * development; see the SPONSORS file for full details. Squid is
15 * Copyrighted (C) 2001 by the Regents of the University of
16 * California; see the COPYRIGHT file for full details. Squid
17 * incorporates software developed and/or copyrighted by other
18 * sources; see the CREDITS file for full details.
30a4f2a8 19 *
20 * This program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; either version 2 of the License, or
23 * (at your option) any later version.
26ac0430 24 *
30a4f2a8 25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
26ac0430 29 *
30a4f2a8 30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software
cbdec147 32 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
e25c139f 33 *
7d49daab 34 */
090089c4 35
7d49daab 36#include "squid.h"
a553a5a3 37#include "event.h"
528b2c61 38#include "fde.h"
985c86bc 39#include "SquidTime.h"
090089c4 40
b69f7771 41static IPH send_announce;
e924600d 42
b8d8561b 43void
79d39a72 44start_announce(void *datanotused)
e924600d 45{
9072f1fa 46 if (0 == Config.onoff.announce)
62e76326 47 return;
48
17b6e784 49 if (theOutIcpConnection < 0)
62e76326 50 return;
51
28c60158 52 ipcache_nbgethostbyname(Config.Announce.host, send_announce, NULL);
62e76326 53
52040193 54 eventAdd("send_announce", start_announce, NULL, (double) Config.Announce.period, 1);
e924600d 55}
56
57static void
3ff65596 58send_announce(const ipcache_addrs *ia, const DnsLookupDetails &, void *junk)
090089c4 59{
95d659f0 60 LOCAL_ARRAY(char, tbuf, 256);
61 LOCAL_ARRAY(char, sndbuf, BUFSIZ);
62e76326 62
b7ac5457 63 Ip::Address S;
48f44632 64 char *host = Config.Announce.host;
7d49daab 65 char *file = NULL;
48f44632 66 u_short port = Config.Announce.port;
7d49daab 67 int l;
68 int n;
03a1ee42 69 int fd;
17b6e784 70 int x;
62e76326 71
e924600d 72 if (ia == NULL) {
bf8fe701 73 debugs(27, 1, "send_announce: Unknown host '" << host << "'");
62e76326 74 return;
234967c9 75 }
62e76326 76
bf8fe701 77 debugs(27, 1, "Sending Announcement to " << host);
234967c9 78 sndbuf[0] = '\0';
56878878 79 snprintf(tbuf, 256, "cache_version SQUID/%s\n", version_string);
7d49daab 80 strcat(sndbuf, tbuf);
7e3ce7b9 81 assert(Config.Sockaddr.http);
56878878 82 snprintf(tbuf, 256, "Running on %s %d %d\n",
62e76326 83 getMyHostname(),
84 getMyPort(),
85 (int) Config.Port.icp);
7d49daab 86 strcat(sndbuf, tbuf);
62e76326 87
b6f794d6 88 if (Config.adminEmail) {
62e76326 89 snprintf(tbuf, 256, "cache_admin: %s\n", Config.adminEmail);
90 strcat(sndbuf, tbuf);
234967c9 91 }
62e76326 92
042461c3 93 snprintf(tbuf, 256, "generated %d [%s]\n",
62e76326 94 (int) squid_curtime,
95 mkhttpdlogtime(&squid_curtime));
7d49daab 96 strcat(sndbuf, tbuf);
374b5a2d 97 l = strlen(sndbuf);
62e76326 98
79d39a72 99 if ((file = Config.Announce.file) != NULL) {
62e76326 100 fd = file_open(file, O_RDONLY | O_TEXT);
101
102 if (fd > -1 && (n = FD_READ_METHOD(fd, sndbuf + l, BUFSIZ - l - 1)) > 0) {
103 fd_bytes(fd, n, FD_READ);
104 l += n;
105 sndbuf[l] = '\0';
106 file_close(fd);
107 } else {
bf8fe701 108 debugs(50, 1, "send_announce: " << file << ": " << xstrerror());
62e76326 109 }
090089c4 110 }
62e76326 111
cc192b50 112 S = ia->in_addrs[0];
aab975a8 113 S.SetPort(port);
17b6e784 114 assert(theOutIcpConnection > 0);
cc192b50 115 x = comm_udp_sendto(theOutIcpConnection, S, sndbuf, strlen(sndbuf) + 1);
62e76326 116
17b6e784 117 if (x < 0)
bf8fe701 118 debugs(27, 1, "send_announce: FD " << theOutIcpConnection << ": " << xstrerror());
090089c4 119}