1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
/*
** Copyright 2000-2004 Double Precision, Inc. See COPYING for
** distribution information.
*/
#include "auth.h"
#include "courierauthstaticlist.h"
#include "courierauthsasl.h"
#include "authwait.h"
#include "courierauthdebug.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include <unistd.h>
#include <errno.h>
#include <sys/time.h>
#include <sys/select.h>
#include "numlib/numlib.h"
#include "authchangepwdir.h"
extern int authdaemondopasswd(char *, int);
static int badstr(const char *p)
{
if (!p) return 1;
while (*p)
{
if ((int)(unsigned char)*p < ' ')
return 1;
++p;
}
return 0;
}
int auth_passwd(const char *service,
const char *uid,
const char *opwd,
const char *npwd)
{
char *buf;
if (badstr(service) || badstr(uid) || badstr(opwd) || badstr(npwd))
{
errno=EINVAL;
return -1;
}
buf=malloc(strlen(service)+strlen(uid)+strlen(opwd)+
strlen(npwd)+20);
if (!buf)
return -1;
sprintf(buf, "PASSWD %s\t%s\t%s\t%s\n",
service, uid, opwd, npwd);
if (authdaemondopasswd(buf, strlen(buf)))
{
free(buf);
/*sleep(5);*/
return (-1);
}
free(buf);
return (0);
}
|