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

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: authenticate.c,v 1.10 1998/12/05 00:54:15 wessels Exp $
  3.  *
  4.  * DEBUG: section 29    Authenticator
  5.  * AUTHOR: Duane Wessels
  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. typedef struct {
  36.     void *data;
  37.     acl_proxy_auth_user *auth_user;
  38.     RH *handler;
  39. } authenticateStateData;
  40. static HLPCB authenticateHandleReply;
  41. static void authenticateStateFree(authenticateStateData * r);
  42. static helper *authenticators = NULL;
  43. static void
  44. authenticateHandleReply(void *data, char *reply)
  45. {
  46.     authenticateStateData *r = data;
  47.     int valid;
  48.     char *t = NULL;
  49.     debug(29, 5) ("authenticateHandleReply: {%s}n", reply ? reply : "<NULL>");
  50.     if (reply) {
  51. if ((t = strchr(reply, ' ')))
  52.     *t = '';
  53. if (*reply == '')
  54.     reply = NULL;
  55.     }
  56.     valid = cbdataValid(r->data);
  57.     cbdataUnlock(r->data);
  58.     if (valid)
  59. r->handler(r->data, reply);
  60.     authenticateStateFree(r);
  61. }
  62. static void
  63. authenticateStateFree(authenticateStateData * r)
  64. {
  65.     cbdataFree(r);
  66. }
  67. static void
  68. authenticateStats(StoreEntry * sentry)
  69. {
  70.     storeAppendPrintf(sentry, "Authenticator Statistics:n");
  71.     helperStats(sentry, authenticators);
  72. }
  73. /**** PUBLIC FUNCTIONS ****/
  74. void
  75. authenticateStart(acl_proxy_auth_user * auth_user, RH * handler, void *data)
  76. {
  77.     authenticateStateData *r = NULL;
  78.     char buf[8192];
  79.     assert(auth_user);
  80.     assert(handler);
  81.     debug(29, 5) ("authenticateStart: '%s:%s'n", auth_user->user,
  82. auth_user->passwd);
  83.     if (Config.Program.authenticate == NULL) {
  84. handler(data, NULL);
  85. return;
  86.     }
  87.     r = xcalloc(1, sizeof(authenticateStateData));
  88.     cbdataAdd(r, cbdataXfree, 0);
  89.     r->handler = handler;
  90.     cbdataLock(data);
  91.     r->data = data;
  92.     r->auth_user = auth_user;
  93.     snprintf(buf, 8192, "%s %sn", r->auth_user->user, r->auth_user->passwd);
  94.     helperSubmit(authenticators, buf, authenticateHandleReply, r);
  95. }
  96. void
  97. authenticateInit(void)
  98. {
  99.     static int init = 0;
  100.     if (!Config.Program.authenticate)
  101. return;
  102.     if (authenticators == NULL)
  103. authenticators = helperCreate("authenticator");
  104.     authenticators->cmdline = Config.Program.authenticate;
  105.     authenticators->n_to_start = Config.authenticateChildren;
  106.     authenticators->ipc_type = IPC_TCP_SOCKET;
  107.     helperOpenServers(authenticators);
  108.     if (!init) {
  109. cachemgrRegister("authenticator",
  110.     "User Authenticator Stats",
  111.     authenticateStats, 0, 1);
  112.     }
  113.     init++;
  114. }
  115. void
  116. authenticateShutdown(void)
  117. {
  118.     if (!authenticators)
  119. return;
  120.     helperShutdown(authenticators);
  121.     if (!shutting_down)
  122. return;
  123.     helperFree(authenticators);
  124.     authenticators = NULL;
  125. }