1993-08-04 23:33:45 +04:00
|
|
|
|
/* uupick.c
|
|
|
|
|
Get files stored in the public directory by uucp -t.
|
|
|
|
|
|
1995-08-24 09:18:33 +04:00
|
|
|
|
Copyright (C) 1992, 1993, 1994, 1995 Ian Lance Taylor
|
1993-08-04 23:33:45 +04: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-24 09:18:33 +04:00
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1993-08-04 23:33:45 +04:00
|
|
|
|
|
|
|
|
|
The author of the program may be contacted at ian@airs.com or
|
1995-08-24 09:18:33 +04:00
|
|
|
|
c/o Cygnus Support, 48 Grove Street, Somerville, MA 02144.
|
1993-08-04 23:33:45 +04:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "uucp.h"
|
|
|
|
|
|
|
|
|
|
#if USE_RCS_ID
|
1995-08-24 09:18:33 +04:00
|
|
|
|
const char uupick_rcsid[] = "$Id: uupick.c,v 1.3 1995/08/24 05:23:26 jtc Exp $";
|
1993-08-04 23:33:45 +04:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
|
|
#include "getopt.h"
|
|
|
|
|
|
|
|
|
|
#include "uudefs.h"
|
|
|
|
|
#include "uuconf.h"
|
|
|
|
|
#include "system.h"
|
|
|
|
|
|
|
|
|
|
/* Local functions. */
|
|
|
|
|
|
|
|
|
|
static void upmovedir P((const char *zfull, const char *zrelative,
|
|
|
|
|
pointer pinfo));
|
|
|
|
|
static void upmove P((const char *zfrom, const char *zto));
|
|
|
|
|
|
|
|
|
|
/* Long getopt options. */
|
1994-10-25 01:27:43 +03:00
|
|
|
|
static const struct option asPlongopts[] =
|
|
|
|
|
{
|
|
|
|
|
{ "system", required_argument, NULL, 's' },
|
|
|
|
|
{ "config", required_argument, NULL, 'I' },
|
|
|
|
|
{ "debug", required_argument, NULL, 'x' },
|
|
|
|
|
{ "version", no_argument, NULL, 'v' },
|
|
|
|
|
{ "help", no_argument, NULL, 1 },
|
|
|
|
|
{ NULL, 0, NULL, 0 }
|
|
|
|
|
};
|
1993-08-04 23:33:45 +04:00
|
|
|
|
|
|
|
|
|
/* Local functions. */
|
|
|
|
|
|
|
|
|
|
static void upusage P((void));
|
1994-10-25 01:27:43 +03:00
|
|
|
|
static void uphelp P((void));
|
1993-08-04 23:33:45 +04:00
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
main (argc, argv)
|
|
|
|
|
int argc;
|
|
|
|
|
char **argv;
|
|
|
|
|
{
|
|
|
|
|
/* -s: system name. */
|
|
|
|
|
const char *zsystem = NULL;
|
|
|
|
|
/* -I: configuration file name. */
|
|
|
|
|
const char *zconfig = NULL;
|
|
|
|
|
int iopt;
|
|
|
|
|
pointer puuconf;
|
|
|
|
|
int iuuconf;
|
|
|
|
|
const char *zpubdir;
|
|
|
|
|
char *zfile, *zfrom, *zfull;
|
|
|
|
|
char *zallsys;
|
|
|
|
|
char ab[1000];
|
|
|
|
|
boolean fquit;
|
|
|
|
|
|
1994-10-25 01:27:43 +03:00
|
|
|
|
zProgram = "uupick";
|
|
|
|
|
|
|
|
|
|
while ((iopt = getopt_long (argc, argv, "I:s:vx:", asPlongopts,
|
1993-08-04 23:33:45 +04:00
|
|
|
|
(int *) NULL)) != EOF)
|
|
|
|
|
{
|
|
|
|
|
switch (iopt)
|
|
|
|
|
{
|
|
|
|
|
case 's':
|
|
|
|
|
/* System name to get files from. */
|
|
|
|
|
zsystem = optarg;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'I':
|
|
|
|
|
/* Name configuration file. */
|
|
|
|
|
if (fsysdep_other_config (optarg))
|
|
|
|
|
zconfig = optarg;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'x':
|
|
|
|
|
#if DEBUG > 1
|
|
|
|
|
/* Set debugging level. */
|
|
|
|
|
iDebug |= idebug_parse (optarg);
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
1994-10-25 01:27:43 +03:00
|
|
|
|
case 'v':
|
|
|
|
|
/* Print version and exit. */
|
|
|
|
|
fprintf
|
|
|
|
|
(stderr,
|
1995-08-24 09:18:33 +04:00
|
|
|
|
"%s: Taylor UUCP %s, copyright (C) 1991, 92, 93, 94, 1995 Ian Lance Taylor\n",
|
1994-10-25 01:27:43 +03:00
|
|
|
|
zProgram, VERSION);
|
|
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
|
/*NOTREACHED*/
|
|
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
|
/* --help. */
|
|
|
|
|
uphelp ();
|
|
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
|
/*NOTREACHED*/
|
|
|
|
|
|
1993-08-04 23:33:45 +04:00
|
|
|
|
case 0:
|
|
|
|
|
/* Long option found and flag set. */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
upusage ();
|
1994-10-25 01:27:43 +03:00
|
|
|
|
/*NOTREACHED*/
|
1993-08-04 23:33:45 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (argc != optind)
|
|
|
|
|
upusage ();
|
|
|
|
|
|
|
|
|
|
iuuconf = uuconf_init (&puuconf, (const char *) NULL, zconfig);
|
|
|
|
|
if (iuuconf != UUCONF_SUCCESS)
|
|
|
|
|
ulog_uuconf (LOG_FATAL, puuconf, iuuconf);
|
|
|
|
|
|
|
|
|
|
usysdep_initialize (puuconf, INIT_GETCWD | INIT_NOCHDIR);
|
|
|
|
|
|
|
|
|
|
zpubdir = NULL;
|
|
|
|
|
if (zsystem != NULL)
|
|
|
|
|
{
|
1995-08-24 09:18:33 +04:00
|
|
|
|
struct uuconf_system ssys;
|
|
|
|
|
|
|
|
|
|
/* Get the public directory for the system. If we can't find
|
|
|
|
|
the system information, just use the standard public
|
|
|
|
|
directory, since uupick is not setuid. */
|
1993-08-04 23:33:45 +04:00
|
|
|
|
iuuconf = uuconf_system_info (puuconf, zsystem, &ssys);
|
|
|
|
|
if (iuuconf == UUCONF_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
zpubdir = zbufcpy (ssys.uuconf_zpubdir);
|
|
|
|
|
(void) uuconf_system_free (puuconf, &ssys);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (zpubdir == NULL)
|
|
|
|
|
{
|
|
|
|
|
iuuconf = uuconf_pubdir (puuconf, &zpubdir);
|
|
|
|
|
if (iuuconf != UUCONF_SUCCESS)
|
|
|
|
|
ulog_uuconf (LOG_FATAL, puuconf, iuuconf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (! fsysdep_uupick_init (zsystem, zpubdir))
|
|
|
|
|
usysdep_exit (FALSE);
|
|
|
|
|
|
|
|
|
|
zallsys = NULL;
|
|
|
|
|
fquit = FALSE;
|
|
|
|
|
|
|
|
|
|
while (! fquit
|
|
|
|
|
&& ((zfile = zsysdep_uupick (zsystem, zpubdir, &zfrom, &zfull))
|
|
|
|
|
!= NULL))
|
|
|
|
|
{
|
|
|
|
|
boolean fdir;
|
|
|
|
|
char *zto, *zlocal;
|
|
|
|
|
FILE *e;
|
|
|
|
|
boolean fcontinue;
|
|
|
|
|
|
|
|
|
|
fdir = fsysdep_directory (zfull);
|
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
1994-10-25 01:27:43 +03:00
|
|
|
|
boolean fbadname;
|
|
|
|
|
|
1993-08-04 23:33:45 +04:00
|
|
|
|
fcontinue = FALSE;
|
|
|
|
|
|
|
|
|
|
if (zallsys == NULL
|
|
|
|
|
|| strcmp (zallsys, zfrom) != 0)
|
|
|
|
|
{
|
|
|
|
|
if (zallsys != NULL)
|
|
|
|
|
{
|
|
|
|
|
ubuffree (zallsys);
|
|
|
|
|
zallsys = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
printf ("from %s: %s %s ?\n", zfrom, fdir ? "dir" : "file",
|
|
|
|
|
zfile);
|
|
|
|
|
|
|
|
|
|
if (fgets (ab, sizeof ab, stdin) == NULL)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ab[0] == 'q')
|
|
|
|
|
{
|
|
|
|
|
fquit = TRUE;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (ab[0])
|
|
|
|
|
{
|
|
|
|
|
case '\n':
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'd':
|
|
|
|
|
if (fdir)
|
|
|
|
|
(void) fsysdep_rmdir (zfull);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (remove (zfull) != 0)
|
|
|
|
|
ulog (LOG_ERROR, "remove (%s): %s", zfull,
|
|
|
|
|
strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'm':
|
|
|
|
|
case 'a':
|
|
|
|
|
zto = ab + 1 + strspn (ab + 1, " \t");
|
|
|
|
|
zto[strcspn (zto, " \t\n")] = '\0';
|
1994-10-25 01:27:43 +03:00
|
|
|
|
zlocal = zsysdep_uupick_local_file (zto, &fbadname);
|
1993-08-04 23:33:45 +04:00
|
|
|
|
if (zlocal == NULL)
|
1994-10-25 01:27:43 +03:00
|
|
|
|
{
|
|
|
|
|
if (! fbadname)
|
|
|
|
|
usysdep_exit (FALSE);
|
|
|
|
|
ulog (LOG_ERROR, "%s: bad local file name", zto);
|
|
|
|
|
fcontinue = TRUE;
|
|
|
|
|
break;
|
|
|
|
|
}
|
1993-08-04 23:33:45 +04:00
|
|
|
|
zto = zsysdep_in_dir (zlocal, zfile);
|
|
|
|
|
ubuffree (zlocal);
|
|
|
|
|
if (zto == NULL)
|
|
|
|
|
usysdep_exit (FALSE);
|
|
|
|
|
if (! fdir)
|
|
|
|
|
upmove (zfull, zto);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
usysdep_walk_tree (zfull, upmovedir, (pointer) zto);
|
|
|
|
|
(void) fsysdep_rmdir (zfull);
|
|
|
|
|
}
|
|
|
|
|
ubuffree (zto);
|
|
|
|
|
|
|
|
|
|
if (ab[0] == 'a')
|
|
|
|
|
{
|
|
|
|
|
zallsys = zbufcpy (zfrom);
|
|
|
|
|
ab[0] = 'm';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
|
if (fdir)
|
|
|
|
|
ulog (LOG_ERROR, "Can't print directory");
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
e = fopen (zfull, "r");
|
|
|
|
|
if (e == NULL)
|
|
|
|
|
ulog (LOG_ERROR, "fopen (%s): %s", zfull,
|
|
|
|
|
strerror (errno));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
while (fgets (ab, sizeof ab, e) != NULL)
|
|
|
|
|
(void) fputs (ab, stdout);
|
|
|
|
|
(void) fclose (e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
fcontinue = TRUE;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '!':
|
|
|
|
|
(void) system (ab + 1);
|
|
|
|
|
fcontinue = TRUE;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
printf ("uupick commands:\n");
|
|
|
|
|
printf ("q: quit\n");
|
|
|
|
|
printf ("<return>: skip file\n");
|
|
|
|
|
printf ("m [dir]: move file to directory\n");
|
|
|
|
|
printf ("a [dir]: move all files from this system to directory\n");
|
|
|
|
|
printf ("p: list file to stdout\n");
|
1995-08-24 09:18:33 +04:00
|
|
|
|
printf ("d: delete file\n");
|
1993-08-04 23:33:45 +04:00
|
|
|
|
printf ("! command: shell escape\n");
|
|
|
|
|
fcontinue = TRUE;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
while (fcontinue);
|
|
|
|
|
|
|
|
|
|
ubuffree (zfull);
|
|
|
|
|
ubuffree (zfrom);
|
|
|
|
|
ubuffree (zfile);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
(void) fsysdep_uupick_free (zsystem, zpubdir);
|
|
|
|
|
|
|
|
|
|
usysdep_exit (TRUE);
|
|
|
|
|
|
|
|
|
|
/* Avoid error about not returning. */
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
1994-10-25 01:27:43 +03:00
|
|
|
|
/* Print usage message and die. */
|
1993-08-04 23:33:45 +04:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
upusage ()
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr,
|
1994-10-25 01:27:43 +03:00
|
|
|
|
"Usage: %s [-s system] [-I config] [-x debug]\n", zProgram);
|
|
|
|
|
fprintf (stderr, "Use %s --help for help\n", zProgram);
|
|
|
|
|
exit (EXIT_FAILURE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print help message. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
uphelp ()
|
|
|
|
|
{
|
1993-08-04 23:33:45 +04:00
|
|
|
|
fprintf (stderr,
|
1995-08-24 09:18:33 +04:00
|
|
|
|
"Taylor UUCP %s, copyright (C) 1991, 92, 93, 94, 1995 Ian Lance Taylor\n",
|
1994-10-25 01:27:43 +03:00
|
|
|
|
VERSION);
|
1993-08-04 23:33:45 +04:00
|
|
|
|
fprintf (stderr,
|
1994-10-25 01:27:43 +03:00
|
|
|
|
" -s,--system system: Only consider files from named system\n");
|
1993-08-04 23:33:45 +04:00
|
|
|
|
fprintf (stderr,
|
1994-10-25 01:27:43 +03:00
|
|
|
|
" -x,--debug debug: Set debugging level\n");
|
1993-08-04 23:33:45 +04:00
|
|
|
|
#if HAVE_TAYLOR_CONFIG
|
|
|
|
|
fprintf (stderr,
|
1994-10-25 01:27:43 +03:00
|
|
|
|
" -I,--config file: Set configuration file to use\n");
|
1993-08-04 23:33:45 +04:00
|
|
|
|
#endif /* HAVE_TAYLOR_CONFIG */
|
1994-10-25 01:27:43 +03:00
|
|
|
|
fprintf (stderr,
|
|
|
|
|
" -v,--version: Print version and exit\n");
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
" --help: Print help and exit\n");
|
1993-08-04 23:33:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This routine is called by usysdep_walk_tree when moving the
|
|
|
|
|
contents of an entire directory. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
upmovedir (zfull, zrelative, pinfo)
|
|
|
|
|
const char *zfull;
|
|
|
|
|
const char *zrelative;
|
|
|
|
|
pointer pinfo;
|
|
|
|
|
{
|
|
|
|
|
const char *ztodir = (const char *) pinfo;
|
|
|
|
|
char *zto;
|
|
|
|
|
|
|
|
|
|
zto = zsysdep_in_dir (ztodir, zrelative);
|
|
|
|
|
if (zto == NULL)
|
|
|
|
|
usysdep_exit (FALSE);
|
|
|
|
|
upmove (zfull, zto);
|
|
|
|
|
ubuffree (zto);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Move a file. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
upmove (zfrom, zto)
|
|
|
|
|
const char *zfrom;
|
|
|
|
|
const char *zto;
|
|
|
|
|
{
|
|
|
|
|
(void) fsysdep_move_file (zfrom, zto, TRUE, TRUE, FALSE,
|
|
|
|
|
(const char *) NULL);
|
|
|
|
|
}
|