dns.c
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:4k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: dns.c,v 1.74 1999/01/17 19:46:28 wessels Exp $
  3.  *
  4.  * DEBUG: section 34    Dnsserver interface
  5.  * AUTHOR: Harvest Derived
  6.  *
  7.  * SQUID Internet Object Cache  http://squid.nlanr.net/Squid/
  8.  * ----------------------------------------------------------
  9.  *
  10.  *  Squid is the result of efforts by numerous individuals from the
  11.  *  Internet community.  Development is led by Duane Wessels of the
  12.  *  National Laboratory for Applied Network Research and funded by the
  13.  *  National Science Foundation.  Squid is Copyrighted (C) 1998 by
  14.  *  Duane Wessels and the University of California San Diego.  Please
  15.  *  see the COPYRIGHT file for full details.  Squid incorporates
  16.  *  software developed and/or copyrighted by other sources.  Please see
  17.  *  the CREDITS file for full details.
  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.
  23.  *  
  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.
  28.  *  
  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
  31.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
  32.  *
  33.  */
  34. #include "squid.h"
  35. static helper *dnsservers = NULL;
  36. static void
  37. dnsStats(StoreEntry * sentry)
  38. {
  39.     storeAppendPrintf(sentry, "Dnsserver Statistics:n");
  40.     helperStats(sentry, dnsservers);
  41. }
  42. void
  43. dnsInit(void)
  44. {
  45.     static int init = 0;
  46.     wordlist *w;
  47.     if (!Config.Program.dnsserver)
  48. return;
  49.     if (dnsservers == NULL)
  50. dnsservers = helperCreate("dnsserver");
  51.     dnsservers->n_to_start = Config.dnsChildren;
  52.     dnsservers->ipc_type = IPC_TCP_SOCKET;
  53.     assert(dnsservers->cmdline == NULL);
  54.     wordlistAdd(&dnsservers->cmdline, Config.Program.dnsserver);
  55.     if (Config.onoff.res_defnames)
  56. wordlistAdd(&dnsservers->cmdline, "-D");
  57.     for (w = Config.dns_nameservers; w != NULL; w = w->next) {
  58. wordlistAdd(&dnsservers->cmdline, "-s");
  59. wordlistAdd(&dnsservers->cmdline, w->key);
  60.     }
  61.     helperOpenServers(dnsservers);
  62.     if (!init) {
  63. cachemgrRegister("dns",
  64.     "Dnsserver Statistics",
  65.     dnsStats, 0, 1);
  66.     }
  67.     init++;
  68. }
  69. void
  70. dnsShutdown(void)
  71. {
  72.     if (!dnsservers)
  73. return;
  74.     helperShutdown(dnsservers);
  75.     wordlistDestroy(&dnsservers->cmdline);
  76.     if (!shutting_down)
  77. return;
  78.     helperFree(dnsservers);
  79.     dnsservers = NULL;
  80. }
  81. void
  82. dnsSubmit(const char *lookup, HLPCB * callback, void *data)
  83. {
  84.     char buf[256];
  85.     snprintf(buf, 256, "%sn", lookup);
  86.     helperSubmit(dnsservers, buf, callback, data);
  87. }
  88. #ifdef SQUID_SNMP
  89. /*
  90.  * The function to return the DNS via SNMP
  91.  */
  92. variable_list *
  93. snmp_netDnsFn(variable_list * Var, snint * ErrP)
  94. {
  95.     variable_list *Answer;
  96.     debug(49, 5) ("snmp_netDnsFn: Processing request:n", Var->name[LEN_SQ_NET +
  97.     1]);
  98.     snmpDebugOid(5, Var->name, Var->name_length);
  99.     Answer = snmp_var_new(Var->name, Var->name_length);
  100.     *ErrP = SNMP_ERR_NOERROR;
  101.     Answer->val_len = sizeof(snint);
  102.     Answer->val.integer = xmalloc(Answer->val_len);
  103.     Answer->type = SMI_COUNTER32;
  104.     switch (Var->name[LEN_SQ_NET + 1]) {
  105.     case DNS_REQ:
  106. *(Answer->val.integer) = dnsservers->stats.requests;
  107. break;
  108.     case DNS_REP:
  109. *(Answer->val.integer) = dnsservers->stats.replies;
  110. break;
  111.     case DNS_SERVERS:
  112. *(Answer->val.integer) = dnsservers->n_running;
  113. break;
  114.     default:
  115. *ErrP = SNMP_ERR_NOSUCHNAME;
  116. snmp_var_free(Answer);
  117. return (NULL);
  118.     }
  119.     return Answer;
  120. }
  121. #endif /*SQUID_SNMP */