conversions.c
上传用户:zibowangxu
上传日期:2007-01-04
资源大小:331k
文件大小:5k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /****************************************************************************  
  2.  
  3.   Copyright (c) 1999 WU-FTPD Development Group.  
  4.   All rights reserved.
  5.   
  6.   Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994
  7.     The Regents of the University of California.
  8.   Portions Copyright (c) 1993, 1994 Washington University in Saint Louis.
  9.   Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc.
  10.   Portions Copyright (c) 1989 Massachusetts Institute of Technology.
  11.   Portions Copyright (c) 1998 Sendmail, Inc.
  12.   Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P.  Allman.
  13.   Portions Copyright (c) 1997 by Stan Barber.
  14.   Portions Copyright (c) 1997 by Kent Landfield.
  15.   Portions Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997
  16.     Free Software Foundation, Inc.  
  17.  
  18.   Use and distribution of this software and its source code are governed 
  19.   by the terms and conditions of the WU-FTPD Software License ("LICENSE").
  20.  
  21.   If you did not receive a copy of the license, it may be obtained online
  22.   at http://www.wu-ftpd.org/license.html.
  23.  
  24.   $Id: conversions.c,v 1.9 1999/09/22 09:57:12 wuftpd Exp $
  25.  
  26. ****************************************************************************/
  27. #include "config.h"
  28. #include <stdio.h>
  29. #include <errno.h>
  30. #ifdef HAVE_SYS_SYSLOG_H
  31. #include <sys/syslog.h>
  32. #endif
  33. #if defined(HAVE_SYSLOG_H) || (!defined(AUTOCONF) && !defined(HAVE_SYS_SYSLOG_H))
  34. #include <syslog.h>
  35. #endif
  36. extern char *strsep(char **, const char *);
  37. #include <string.h>
  38. #include <sys/types.h>
  39. #include <sys/stat.h>
  40. #include "conversions.h"
  41. #include "extensions.h"
  42. #include "pathnames.h"
  43. #include "proto.h"
  44. /*************************************************************************/
  45. /* FUNCTION  : readconv                                                  */
  46. /* PURPOSE   : Read the conversions into memory                          */
  47. /* ARGUMENTS : The pathname of the conversion file                       */
  48. /* RETURNS   : 0 if error, 1 if no error                                 */
  49. /*************************************************************************/
  50. char *convbuf = NULL;
  51. struct convert *cvtptr;
  52. struct str2int {
  53.     char *string;
  54.     int value;
  55. };
  56. struct str2int c_list[] =
  57. {
  58.     {"T_REG", T_REG},
  59.     {"T_ASCII", T_ASCII},
  60.     {"T_DIR", T_DIR},
  61.     {"O_COMPRESS", O_COMPRESS},
  62.     {"O_UNCOMPRESS", O_UNCOMPRESS},
  63.     {"O_TAR", O_TAR},
  64.     {NULL, 0},
  65. };
  66. static int conv(char *str)
  67. {
  68.     int rc = 0;
  69.     int counter;
  70.     /* check for presence of ALL items in string... */
  71.     if (str)
  72. for (counter = 0; c_list[counter].string; ++counter)
  73.     if (strstr(str, c_list[counter].string))
  74. rc = rc | c_list[counter].value;
  75.     return (rc);
  76. }
  77. static int readconv(char *convpath)
  78. {
  79.     FILE *convfile;
  80.     struct stat finfo;
  81.     if ((convfile = fopen(convpath, "r")) == NULL) {
  82. if (errno != ENOENT)
  83.     syslog(LOG_ERR, "cannot open conversion file %s: %s",
  84.    convpath, strerror(errno));
  85. return (0);
  86.     }
  87.     if (fstat(fileno(convfile), &finfo) != 0) {
  88. syslog(LOG_ERR, "cannot fstat conversion file %s: %s", convpath,
  89.        strerror(errno));
  90. (void) fclose(convfile);
  91. return (0);
  92.     }
  93.     if (finfo.st_size == 0) {
  94. convbuf = (char *) calloc(1, 1);
  95.     }
  96.     else {
  97. if (!(convbuf = (char *) malloc((unsigned) finfo.st_size + 1))) {
  98.     syslog(LOG_ERR, "could not malloc convbuf (%d bytes)", finfo.st_size + 1);
  99.     (void) fclose(convfile);
  100.     return (0);
  101. }
  102. if (!fread(convbuf, (size_t) finfo.st_size, 1, convfile)) {
  103.     syslog(LOG_ERR, "error reading conv file %s: %s", convpath,
  104.    strerror(errno));
  105.     convbuf = NULL;
  106.     (void) fclose(convfile);
  107.     return (0);
  108. }
  109. *(convbuf + finfo.st_size) = '';
  110.     }
  111.     (void) fclose(convfile);
  112.     return (1);
  113. }
  114. static void parseconv(void)
  115. {
  116.     char *ptr;
  117.     char *convptr = convbuf, *line;
  118.     char *argv[8], *p, *val;
  119.     struct convert *cptr, *cvttail = (struct convert *) NULL;
  120.     int n;
  121.     if (!convbuf || !(*convbuf))
  122. return;
  123.     /* read through convbuf, stripping comments. */
  124.     while (*convptr != '') {
  125. line = convptr;
  126. while (*convptr && *convptr != 'n')
  127.     convptr++;
  128. *convptr++ = '';
  129. /* deal with comments */
  130. if ((ptr = strchr(line, '#')) != NULL)
  131.     *ptr = '';
  132. if (*line == '')
  133.     continue;
  134. /* parse the lines... */
  135. for (n = 0, p = line; n < 8 && p != NULL; n++) {
  136.     val = (char *) strsep(&p, ":n");
  137.     argv[n] = val;
  138.     if ((argv[n][0] == ' ') || (argv[n][0] == ''))
  139. argv[n] = NULL;
  140. }
  141. /* check their were 8 fields, if not skip the line... */
  142. if (n != 8 || p != NULL)
  143.     continue;
  144. /* make sure the required elements are present */
  145. if ((!argv[0] && !argv[1] && !argv[2] && !argv[3]) || !argv[4] || !argv[7])
  146.     continue;
  147. /* add element to end of list */
  148. cptr = (struct convert *) calloc(1, sizeof(struct convert));
  149. if (cptr == NULL) {
  150.     syslog(LOG_ERR, "calloc error parsing ftpconversions");
  151.     exit(0);
  152. }
  153. if (cvttail)
  154.     cvttail->next = cptr;
  155. cvttail = cptr;
  156. if (!cvtptr)
  157.     cvtptr = cptr;
  158. cptr->stripprefix = (char *) argv[0];
  159. cptr->stripfix = (char *) argv[1];
  160. cptr->prefix = (char *) argv[2];
  161. cptr->postfix = (char *) argv[3];
  162. cptr->external_cmd = (char *) argv[4];
  163. cptr->types = conv((char *) argv[5]);
  164. cptr->options = conv((char *) argv[6]);
  165. cptr->name = (char *) argv[7];
  166.     }
  167. }
  168. void conv_init(void)
  169. {
  170. #ifdef VERBOSE
  171.     struct convert *cptr;
  172. #endif
  173.     if ((readconv(_path_cvt)) < 0)
  174. return;
  175.     parseconv();
  176. }