freebsd-dev/gnu/libexec/uucp/libuuconf/callin.c

196 lines
4.9 KiB
C
Raw Normal View History

1993-08-05 18:28:27 +00:00
/* callin.c
Check a login name and password against the UUCP password file.
Copyright (C) 1992, 1993, 1995 Ian Lance Taylor
1993-08-05 18:28:27 +00:00
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., 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
c/o Cygnus Support, 48 Grove Street, Somerville, MA 02144.
1993-08-05 18:28:27 +00:00
*/
#include "uucnfi.h"
#if USE_RCS_ID
1999-08-27 23:37:10 +00:00
const char _uuconf_callin_rcsid[] = "$FreeBSD$";
1993-08-05 18:28:27 +00:00
#endif
#include <errno.h>
1994-05-07 18:14:43 +00:00
static int ipcheck P((pointer pglobal, int argc, char **argv,
1993-08-05 18:28:27 +00:00
pointer pvar, pointer pinfo));
1994-05-07 18:14:43 +00:00
struct sinfo
{
int (*pcmpfn) P((int, pointer, const char *));
pointer pinfo;
boolean ffound;
boolean fmatched;
};
1993-08-05 18:28:27 +00:00
/* Check a login name and password against the UUCP password file.
This looks at the Taylor UUCP password file, but will work even if
1994-05-07 18:14:43 +00:00
uuconf_taylor_init was not called. It accepts either spaces or
colons as field delimiters. */
1993-08-05 18:28:27 +00:00
int
1994-05-07 18:14:43 +00:00
uuconf_callin (pglobal, pcmpfn, pinfo)
1993-08-05 18:28:27 +00:00
pointer pglobal;
1994-05-07 18:14:43 +00:00
int (*pcmpfn) P((int, pointer, const char *));
pointer pinfo;
1993-08-05 18:28:27 +00:00
{
struct sglobal *qglobal = (struct sglobal *) pglobal;
int iret;
char **pz;
1994-05-07 18:14:43 +00:00
struct uuconf_cmdtab as[1];
struct sinfo s;
char *zline;
size_t cline;
1993-08-05 18:28:27 +00:00
/* 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;
}
1994-05-07 18:14:43 +00:00
as[0].uuconf_zcmd = NULL;
1993-08-05 18:28:27 +00:00
1994-05-07 18:14:43 +00:00
s.pcmpfn = pcmpfn;
s.pinfo = pinfo;
s.ffound = FALSE;
s.fmatched = FALSE;
1993-08-05 18:28:27 +00:00
1994-05-07 18:14:43 +00:00
zline = NULL;
cline = 0;
1993-08-05 18:28:27 +00:00
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;
}
1994-05-07 18:14:43 +00:00
qglobal->ilineno = 0;
iret = UUCONF_SUCCESS;
while (getline (&zline, &cline, e) > 0)
{
char *z0, *z1;
1994-05-07 18:14:43 +00:00
++qglobal->ilineno;
/* We have a few hacks to make Unix style passwd files work.
1) We turn the first two colon characters into spaces.
2) If the colon characters are adjacent, we assume there
is no password, and we skip the entry.
3) If the password between colon characters contains a
space, we assume that it has been disabled, and we
skip the entry. */
z0 = strchr (zline, ':');
if (z0 != NULL)
1994-05-07 18:14:43 +00:00
{
*z0 = ' ';
z1 = strchr (z0, ':');
if (z1 != NULL)
{
if (z1 - z0 == 1)
continue;
*z1 = '\0';
if (strchr (z0 + 1, ' ') != NULL)
continue;
}
}
1994-05-07 18:14:43 +00:00
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;
}
1993-08-05 18:28:27 +00:00
(void) fclose (e);
1994-05-07 18:14:43 +00:00
if (iret != UUCONF_SUCCESS || s.ffound)
1993-08-05 18:28:27 +00:00
break;
}
1994-05-07 18:14:43 +00:00
if (zline != NULL)
free ((pointer) zline);
1993-08-05 18:28:27 +00:00
if (iret != UUCONF_SUCCESS)
{
qglobal->zfilename = *pz;
iret |= UUCONF_ERROR_FILENAME;
}
1994-05-07 18:14:43 +00:00
else if (! s.ffound || ! s.fmatched)
1993-08-05 18:28:27 +00:00
iret = UUCONF_NOT_FOUND;
return iret;
}
1994-05-07 18:14:43 +00:00
/* 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. */
1993-08-05 18:28:27 +00:00
static int
1994-05-07 18:14:43 +00:00
ipcheck (pglobal, argc, argv, pvar, pinfo)
1993-08-05 18:28:27 +00:00
pointer pglobal;
int argc;
char **argv;
pointer pvar;
pointer pinfo;
{
1994-05-07 18:14:43 +00:00
struct sinfo *q = (struct sinfo *) pinfo;
1993-08-05 18:28:27 +00:00
1994-05-07 18:14:43 +00:00
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;
1993-08-05 18:28:27 +00:00
return UUCONF_CMDTABRET_EXIT;
}