ckconfig.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: ckconfig.c,v 1.9 1999/09/19 19:21:23 wuftpd Exp $
  25.  
  26. ****************************************************************************/
  27. #include "config.h"
  28. #ifndef HOST_ACCESS
  29. #define  HOST_ACCESS  1
  30. #endif
  31. #include <stdio.h>
  32. #include <string.h>
  33. #include <sys/types.h>
  34. #include <sys/stat.h>
  35. #include "pathnames.h"
  36. /* Prototypes */
  37. #ifdef VIRTUAL
  38. extern int read_servers_line(FILE *, char *, char *);
  39. #endif
  40. void print_copyright(void);
  41. int main(int argc, char **argv)
  42. {
  43.     struct stat sbuf;
  44.     char *sp;
  45.     char buf[1024];
  46.     int c;
  47. #ifdef VIRTUAL
  48.     FILE *svrfp;
  49.     char accesspath[1024];
  50.     char hostaddress[32];
  51. #endif
  52.     if (argc > 1) {
  53. while ((c = getopt(argc, argv, "V")) != EOF) {
  54.     switch (c) {
  55.     case 'V':
  56. print_copyright();
  57. exit(0);
  58.     default:
  59. fprintf(stderr, "usage: %s [-V]n", argv[0]);
  60. exit(1);
  61.     }
  62. }
  63.     }
  64.     /* _PATH_FTPUSERS   */
  65.     fprintf(stdout, "Checking _PATH_FTPUSERS :: %sn", _PATH_FTPUSERS);
  66.     if ((stat(_PATH_FTPUSERS, &sbuf)) < 0)
  67. printf("I can't find it... look in doc/examples for an example.n");
  68.     else
  69. printf("ok.n");
  70. #ifdef VIRTUAL
  71.     /* _PATH_FTPSERVERS  */
  72.     fprintf(stdout, "nChecking _PATH_FTPSERVERS :: %sn", _PATH_FTPSERVERS);
  73.     if ((stat(_PATH_FTPSERVERS, &sbuf)) < 0)
  74. printf("I can't find it... look in doc/examples for an example.n");
  75.     else {
  76. printf("ok.n");
  77. /* Need to check the access files specified in the ftpservers file. */
  78. if ((svrfp = fopen(_PATH_FTPSERVERS, "r")) == NULL)
  79.     printf("I can't open it! check permissions and run ckconfig again.n");
  80. else {
  81.     while (read_servers_line(svrfp, hostaddress, accesspath) == 1) {
  82. fprintf(stderr, "nChecking accessfile for %s :: %sn", hostaddress, accesspath);
  83. /*
  84.    ** check to see that a valid directory value was
  85.    ** supplied and not something such as "INTERNAL"
  86.    **
  87.    ** It is valid to have a string such as "INTERNAL" in the
  88.    ** ftpservers entry. This is not an error. Silently ignore it.
  89.  */
  90. if (stat(accesspath, &sbuf) == 0) {
  91.     if ((sbuf.st_mode & S_IFMT) == S_IFDIR)
  92. printf("ok.n");
  93.     else {
  94. printf("Check servers file and make sure only directories are listed...n");
  95. printf("look in doc/examples for an example.n");
  96.     }
  97. }
  98. else
  99.     printf("Internal ftpaccess usage specified... ok.n");
  100.     }
  101.     fclose(svrfp);
  102. }
  103.     }
  104. #endif
  105.     /* _PATH_FTPACCESS  */
  106.     fprintf(stdout, "nChecking _PATH_FTPACCESS :: %sn", _PATH_FTPACCESS);
  107.     if ((stat(_PATH_FTPACCESS, &sbuf)) < 0)
  108. printf("I can't find it... look in doc/examples for an example.n");
  109.     else
  110. printf("ok.n");
  111.     /* _PATH_PIDNAMES   */
  112.     fprintf(stdout, "nChecking _PATH_PIDNAMES :: %sn", _PATH_PIDNAMES);
  113.     strcpy(buf, _PATH_PIDNAMES);
  114.     sp = (char *) strrchr(buf, '/');
  115.     *sp = '';
  116.     if ((stat(buf, &sbuf)) < 0) {
  117. printf("I can't find it...n");
  118. printf("You need to make this directory [%s] in order forn", buf);
  119. printf("the limit and user count functions to work.n");
  120.     }
  121.     else
  122. printf("ok.n");
  123.     /* _PATH_CVT        */
  124.     fprintf(stdout, "nChecking _PATH_CVT :: %sn", _PATH_CVT);
  125.     if ((stat(_PATH_CVT, &sbuf)) < 0)
  126. printf("I can't find it... look in doc/examples for an example.n");
  127.     else
  128. printf("ok.n");
  129.     /* _PATH_XFERLOG    */
  130.     fprintf(stdout, "nChecking _PATH_XFERLOG :: %sn", _PATH_XFERLOG);
  131.     if ((stat(_PATH_XFERLOG, &sbuf)) < 0) {
  132. printf("I can't find it... n");
  133. printf("Don't worry, it will be created automatically by then");
  134. printf("server if you do transfer logging.n");
  135.     }
  136.     else
  137. printf("ok.n");
  138.     /* _PATH_PRIVATE    */
  139.     fprintf(stdout, "nChecking _PATH_PRIVATE :: %sn", _PATH_PRIVATE);
  140.     if ((stat(_PATH_PRIVATE, &sbuf)) < 0) {
  141. printf("I can't find it... look in doc/examples for an example.n");
  142. printf("You only need this if you want SITE GROUP and SITE GPASSn");
  143. printf("functionality. If you do, you will need to edit the example.n");
  144.     }
  145.     else
  146. printf("ok.n");
  147.     /* _PATH_FTPHOSTS   */
  148.     fprintf(stdout, "nChecking _PATH_FTPHOSTS :: %sn", _PATH_FTPHOSTS);
  149.     if ((stat(_PATH_FTPHOSTS, &sbuf)) < 0) {
  150. printf("I can't find it... look in doc/examples for an example.n");
  151. printf("You only need this if you are using the HOST ACCESS featuresn");
  152. printf("of the server.n");
  153.     }
  154.     else
  155. printf("ok.n");
  156.     return (0);
  157. }