freebsd-dev/gnu/libexec/uucp/libuuconf/callin.c
1994-05-07 18:14:43 +00:00

185 lines
4.6 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* callin.c
Check a login name and password against the UUCP password file.
Copyright (C) 1992, 1993 Ian Lance Taylor
This file is part of the Taylor UUCP uuconf library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License
as published by the Free Software Foundation; either version 2 of
the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
The author of the program may be contacted at ian@airs.com or
c/o Cygnus Support, Building 200, 1 Kendall Square, Cambridge, MA 02139.
*/
#include "uucnfi.h"
#if USE_RCS_ID
const char _uuconf_callin_rcsid[] = "$Id: callin.c,v 1.8 1994/03/29 01:18:20 ian Rel $";
#endif
#include <errno.h>
static int ipcheck P((pointer pglobal, int argc, char **argv,
pointer pvar, pointer pinfo));
struct sinfo
{
int (*pcmpfn) P((int, pointer, const char *));
pointer pinfo;
boolean ffound;
boolean fmatched;
};
/* Check a login name and password against the UUCP password file.
This looks at the Taylor UUCP password file, but will work even if
uuconf_taylor_init was not called. It accepts either spaces or
colons as field delimiters. */
int
uuconf_callin (pglobal, pcmpfn, pinfo)
pointer pglobal;
int (*pcmpfn) P((int, pointer, const char *));
pointer pinfo;
{
struct sglobal *qglobal = (struct sglobal *) pglobal;
int iret;
char **pz;
struct uuconf_cmdtab as[1];
struct sinfo s;
char *zline;
size_t cline;
/* If we have no password file names, fill in the default name. */
if (qglobal->qprocess->pzpwdfiles == NULL)
{
char ab[sizeof NEWCONFIGLIB + sizeof PASSWDFILE - 1];
memcpy ((pointer) ab, (pointer) NEWCONFIGLIB,
sizeof NEWCONFIGLIB - 1);
memcpy ((pointer) (ab + sizeof NEWCONFIGLIB - 1), (pointer) PASSWDFILE,
sizeof PASSWDFILE);
iret = _uuconf_iadd_string (qglobal, ab, TRUE, FALSE,
&qglobal->qprocess->pzpwdfiles,
qglobal->pblock);
if (iret != UUCONF_SUCCESS)
return iret;
}
as[0].uuconf_zcmd = NULL;
s.pcmpfn = pcmpfn;
s.pinfo = pinfo;
s.ffound = FALSE;
s.fmatched = FALSE;
zline = NULL;
cline = 0;
iret = UUCONF_SUCCESS;
for (pz = qglobal->qprocess->pzpwdfiles; *pz != NULL; pz++)
{
FILE *e;
e = fopen (*pz, "r");
if (e == NULL)
{
if (FNO_SUCH_FILE ())
continue;
qglobal->ierrno = errno;
iret = UUCONF_FOPEN_FAILED | UUCONF_ERROR_ERRNO;
break;
}
qglobal->ilineno = 0;
iret = UUCONF_SUCCESS;
while (getline (&zline, &cline, e) > 0)
{
char *zcolon;
++qglobal->ilineno;
/* Turn the first two colon characters into spaces. This is
a hack to make Unix style passwd files work. */
zcolon = strchr (zline, ':');
if (zcolon != NULL)
{
*zcolon = ' ';
zcolon = strchr (zcolon, ':');
if (zcolon != NULL)
*zcolon = ' ';
}
iret = uuconf_cmd_line (pglobal, zline, as, (pointer) &s,
ipcheck, 0, (pointer) NULL);
if ((iret & UUCONF_CMDTABRET_EXIT) != 0)
{
iret &=~ UUCONF_CMDTABRET_EXIT;
if (iret != UUCONF_SUCCESS)
iret |= UUCONF_ERROR_LINENO;
break;
}
iret = UUCONF_SUCCESS;
}
(void) fclose (e);
if (iret != UUCONF_SUCCESS || s.ffound)
break;
}
if (zline != NULL)
free ((pointer) zline);
if (iret != UUCONF_SUCCESS)
{
qglobal->zfilename = *pz;
iret |= UUCONF_ERROR_FILENAME;
}
else if (! s.ffound || ! s.fmatched)
iret = UUCONF_NOT_FOUND;
return iret;
}
/* This is called on each line of the file. It checks to see if the
login name from the file is the one we are looking for. If it is,
it sets ffound, and then sets fmatched according to whether the
password matches or not. */
static int
ipcheck (pglobal, argc, argv, pvar, pinfo)
pointer pglobal;
int argc;
char **argv;
pointer pvar;
pointer pinfo;
{
struct sinfo *q = (struct sinfo *) pinfo;
if (argc != 2)
return UUCONF_SYNTAX_ERROR | UUCONF_CMDTABRET_EXIT;
if (! (*q->pcmpfn) (0, q->pinfo, argv[0]))
return UUCONF_CMDTABRET_CONTINUE;
q->ffound = TRUE;
q->fmatched = (*q->pcmpfn) (1, q->pinfo, argv[1]) != 0;
return UUCONF_CMDTABRET_EXIT;
}