1993-08-05 18:28:27 +00:00
|
|
|
|
/* picksb.c
|
|
|
|
|
System dependent routines for uupick.
|
|
|
|
|
|
1994-05-07 18:14:43 +00:00
|
|
|
|
Copyright (C) 1992, 1993 Ian Lance Taylor
|
1993-08-05 18:28:27 +00:00
|
|
|
|
|
|
|
|
|
This file is part of the Taylor UUCP package.
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU General Public License as
|
|
|
|
|
published by the Free Software Foundation; either version 2 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
1995-08-19 21:30:30 +00:00
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1993-08-05 18:28:27 +00:00
|
|
|
|
|
|
|
|
|
The author of the program may be contacted at ian@airs.com or
|
1995-08-19 21:30:30 +00:00
|
|
|
|
c/o Cygnus Support, 48 Grove Street, Somerville, MA 02144.
|
1993-08-05 18:28:27 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "uucp.h"
|
|
|
|
|
|
|
|
|
|
#if USE_RCS_ID
|
1995-08-19 21:30:30 +00:00
|
|
|
|
const char picksb_rcsid[] = "$Id: picksb.c,v 1.10 1995/06/21 19:19:54 ian Rel $";
|
1993-08-05 18:28:27 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "uudefs.h"
|
|
|
|
|
#include "system.h"
|
|
|
|
|
#include "sysdep.h"
|
|
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <pwd.h>
|
|
|
|
|
|
|
|
|
|
#if HAVE_OPENDIR
|
|
|
|
|
#if HAVE_DIRENT_H
|
|
|
|
|
#include <dirent.h>
|
|
|
|
|
#else /* ! HAVE_DIRENT_H */
|
|
|
|
|
#include <sys/dir.h>
|
|
|
|
|
#define dirent direct
|
|
|
|
|
#endif /* ! HAVE_DIRENT_H */
|
|
|
|
|
#endif /* HAVE_OPENDIR */
|
|
|
|
|
|
|
|
|
|
#if GETPWUID_DECLARATION_OK
|
|
|
|
|
#ifndef getpwuid
|
|
|
|
|
extern struct passwd *getpwuid ();
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Local variables. */
|
|
|
|
|
|
|
|
|
|
/* Directory of ~/receive/USER. */
|
|
|
|
|
static DIR *qStopdir;
|
|
|
|
|
|
|
|
|
|
/* Name of ~/receive/USER. */
|
|
|
|
|
static char *zStopdir;
|
|
|
|
|
|
|
|
|
|
/* Directory of ~/receive/USER/SYSTEM. */
|
|
|
|
|
static DIR *qSsysdir;
|
|
|
|
|
|
|
|
|
|
/* Name of system. */
|
|
|
|
|
static char *zSsysdir;
|
|
|
|
|
|
|
|
|
|
/* Prepare to get a list of all the file to uupick for this user. */
|
|
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
|
boolean
|
|
|
|
|
fsysdep_uupick_init (zsystem, zpubdir)
|
|
|
|
|
const char *zsystem;
|
|
|
|
|
const char *zpubdir;
|
|
|
|
|
{
|
|
|
|
|
const char *zuser;
|
|
|
|
|
|
|
|
|
|
zuser = zsysdep_login_name ();
|
|
|
|
|
|
|
|
|
|
zStopdir = (char *) xmalloc (strlen (zpubdir)
|
|
|
|
|
+ sizeof "/receive/"
|
|
|
|
|
+ strlen (zuser));
|
|
|
|
|
sprintf (zStopdir, "%s/receive/%s", zpubdir, zuser);
|
|
|
|
|
|
|
|
|
|
qStopdir = opendir (zStopdir);
|
|
|
|
|
if (qStopdir == NULL && errno != ENOENT)
|
|
|
|
|
{
|
|
|
|
|
ulog (LOG_ERROR, "opendir (%s): %s", zStopdir,
|
|
|
|
|
strerror (errno));
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qSsysdir = NULL;
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return the next file from the uupick directories. */
|
|
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
|
char *
|
|
|
|
|
zsysdep_uupick (zsysarg, zpubdir, pzfrom, pzfull)
|
|
|
|
|
const char *zsysarg;
|
|
|
|
|
const char *zpubdir;
|
|
|
|
|
char **pzfrom;
|
|
|
|
|
char **pzfull;
|
|
|
|
|
{
|
|
|
|
|
struct dirent *qentry;
|
|
|
|
|
|
|
|
|
|
while (TRUE)
|
|
|
|
|
{
|
|
|
|
|
while (qSsysdir == NULL)
|
|
|
|
|
{
|
|
|
|
|
const char *zsystem;
|
|
|
|
|
char *zdir;
|
|
|
|
|
|
|
|
|
|
if (qStopdir == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
if (zsysarg != NULL)
|
|
|
|
|
{
|
|
|
|
|
closedir (qStopdir);
|
|
|
|
|
qStopdir = NULL;
|
|
|
|
|
zsystem = zsysarg;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
qentry = readdir (qStopdir);
|
|
|
|
|
if (qentry == NULL)
|
|
|
|
|
{
|
|
|
|
|
closedir (qStopdir);
|
|
|
|
|
qStopdir = NULL;
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
while (strcmp (qentry->d_name, ".") == 0
|
|
|
|
|
|| strcmp (qentry->d_name, "..") == 0);
|
|
|
|
|
|
|
|
|
|
zsystem = qentry->d_name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
zdir = zbufalc (strlen (zStopdir) + strlen (zsystem) + sizeof "/");
|
|
|
|
|
sprintf (zdir, "%s/%s", zStopdir, zsystem);
|
|
|
|
|
|
|
|
|
|
qSsysdir = opendir (zdir);
|
|
|
|
|
if (qSsysdir == NULL)
|
|
|
|
|
{
|
|
|
|
|
if (errno != ENOENT && errno != ENOTDIR)
|
|
|
|
|
ulog (LOG_ERROR, "opendir (%s): %s", zdir, strerror (errno));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ubuffree (zSsysdir);
|
|
|
|
|
zSsysdir = zbufcpy (zsystem);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ubuffree (zdir);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qentry = readdir (qSsysdir);
|
|
|
|
|
if (qentry == NULL)
|
|
|
|
|
{
|
|
|
|
|
closedir (qSsysdir);
|
|
|
|
|
qSsysdir = NULL;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp (qentry->d_name, ".") == 0
|
|
|
|
|
|| strcmp (qentry->d_name, "..") == 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
*pzfrom = zbufcpy (zSsysdir);
|
|
|
|
|
*pzfull = zsappend3 (zStopdir, zSsysdir, qentry->d_name);
|
|
|
|
|
return zbufcpy (qentry->d_name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
|
boolean
|
|
|
|
|
fsysdep_uupick_free (zsystem, zpubdir)
|
|
|
|
|
const char *zsystem;
|
|
|
|
|
const char *zpubdir;
|
|
|
|
|
{
|
|
|
|
|
xfree ((pointer) zStopdir);
|
|
|
|
|
if (qStopdir != NULL)
|
|
|
|
|
{
|
|
|
|
|
closedir (qStopdir);
|
|
|
|
|
qStopdir = NULL;
|
|
|
|
|
}
|
|
|
|
|
ubuffree (zSsysdir);
|
|
|
|
|
zSsysdir = NULL;
|
|
|
|
|
if (qSsysdir != NULL)
|
|
|
|
|
{
|
|
|
|
|
closedir (qSsysdir);
|
|
|
|
|
qSsysdir = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Expand a local file name for uupick. */
|
|
|
|
|
|
|
|
|
|
char *
|
1994-05-07 18:14:43 +00:00
|
|
|
|
zsysdep_uupick_local_file (zfile, pfbadname)
|
1993-08-05 18:28:27 +00:00
|
|
|
|
const char *zfile;
|
1994-05-07 18:14:43 +00:00
|
|
|
|
boolean *pfbadname;
|
1993-08-05 18:28:27 +00:00
|
|
|
|
{
|
|
|
|
|
struct passwd *q;
|
|
|
|
|
|
1994-05-07 18:14:43 +00:00
|
|
|
|
if (pfbadname != NULL)
|
|
|
|
|
*pfbadname = FALSE;
|
|
|
|
|
|
1993-08-05 18:28:27 +00:00
|
|
|
|
/* If this does not start with a simple ~, pass it to
|
|
|
|
|
zsysdep_local_file_cwd; as it happens, zsysdep_local_file_cwd
|
|
|
|
|
only uses the zpubdir argument if the file starts with a simple
|
|
|
|
|
~, so it doesn't really matter what we pass for zpubdir. */
|
|
|
|
|
if (zfile[0] != '~'
|
|
|
|
|
|| (zfile[1] != '/' && zfile[1] != '\0'))
|
1994-05-07 18:14:43 +00:00
|
|
|
|
return zsysdep_local_file_cwd (zfile, (const char *) NULL, pfbadname);
|
1995-08-19 21:30:30 +00:00
|
|
|
|
|
1993-08-05 18:28:27 +00:00
|
|
|
|
q = getpwuid (getuid ());
|
|
|
|
|
if (q == NULL)
|
|
|
|
|
{
|
|
|
|
|
ulog (LOG_ERROR, "Can't get home directory");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (zfile[1] == '\0')
|
|
|
|
|
return zbufcpy (q->pw_dir);
|
|
|
|
|
|
|
|
|
|
return zsysdep_in_dir (q->pw_dir, zfile + 2);
|
|
|
|
|
}
|