pwd_internal.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* ==== pwd_internal.c ============================================================
  2.  * Copyright (c) 1993, 1994 by Chris Provenzano, proven@mit.edu
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *  This product includes software developed by Chris Provenzano.
  16.  * 4. The name of Chris Provenzano may not be used to endorse or promote 
  17.  *   products derived from this software without specific prior written
  18.  *   permission.
  19.  *
  20.  * THIS SOFTWARE IS PROVIDED BY CHRIS PROVENZANO ``AS IS'' AND
  21.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23.  * ARE DISCLAIMED.  IN NO EVENT SHALL CHRIS PROVENZANO BE LIABLE FOR ANY 
  24.  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  25.  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
  26.  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  27.  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
  28.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  29.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
  30.  * SUCH DAMAGE.
  31.  *
  32.  * Description : Thread-safe password hacking functions.
  33.  *
  34.  *  1.00 95/02/08 snl
  35.  *      -Started coding this file.
  36.  */
  37. #include <pthread.h>
  38. #include <stdlib.h>
  39. #include <stdio.h>
  40. #include <pwd.h>
  41. #include <unistd.h>
  42. #include "pwd_internal.h"
  43. static pthread_once_t __pw_init = PTHREAD_ONCE_INIT;
  44. static pthread_key_t __pw_key;
  45. void
  46. _pw_null_cleanup(void *junkola)
  47. {
  48.   pwf_context_t *x = (pwf_context_t *)junkola;
  49.   if (x) {
  50.     if (x->pwf) {
  51.       fclose(x->pwf);
  52.       x->pwf = 0;
  53.     }
  54. #ifdef DBM_PWD_SUPPORT
  55.     if (x->pw_db) {
  56.       dbm_close(x->pw_db);
  57.       x->pw_db = 0;
  58.     }
  59. #endif /* DBM_PWD_SUPPORT */
  60.     free((void *)x);
  61.   }
  62. }
  63. void
  64. _pw_create_key()
  65. {
  66.   if (pthread_key_create(&__pw_key, _pw_null_cleanup)) {
  67.     PANIC();
  68.   }
  69. }
  70. pwf_context_t *
  71. _pw_get_data()
  72. {
  73.   pwf_context_t *_data;
  74.   pthread_once(&__pw_init, _pw_create_key);
  75.   _data = (pwf_context_t *)pthread_getspecific(__pw_key);
  76.   if (!_data) {
  77.     _data = (pwf_context_t *)malloc(sizeof(pwf_context_t));
  78.     if (_data) {
  79.       _data->pwf = 0;
  80.       _data->line[0] = '';
  81.       _data->pw_stayopen = 0;
  82.       _data->pw_file = "/etc/passwd";
  83. #ifdef DBM_PWD_SUPPORT
  84.       _data->pw_db = 0;
  85. #endif /* DBM_PWD_SUPPORT */
  86.       pthread_setspecific(__pw_key, (void *)_data);
  87.     }
  88.   }
  89.   return _data;
  90. }