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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
/* $Id: authsasl.c,v 1.5 2008/07/10 02:43:55 mrsam Exp $ */
/*
** Copyright 1998 - 2008 Double Precision, Inc. See COPYING for
** distribution information.
*/
#include "courier_auth_config.h"
#include "courierauthsasl.h"
#include "authsaslclient.h"
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <errno.h>
/* Use the SASL_LIST macro to build authsasl_list */
#define NO_SERVER_FUNC()
#define SERVER_FUNC(b) int b(const char *, const char *, \
char *(*)(const char *, void *), \
void *, \
char **, \
char **);
#define SASL(a,b,c) b
SASL_LIST
#undef SASL
#undef SERVER_FUNC
#define SERVER_FUNC(n) n
#undef NO_SERVER_FUNC
#define NO_SERVER_FUNC() 0
#define SASL(a,b,c) {a, b},
struct authsasl_info authsasl_list[] = {
SASL_LIST
{ 0, 0}};
int auth_sasl(const char *method,
const char *initreply,
char *(*callback_func)(const char *, void *),
void *callback_arg,
char **authtype_ptr, /* Returned - AUTHTYPE */
char **authdata_ptr)
{
int i;
char *p, *q;
if ((p=malloc(strlen(method)+1)) == 0)
return (0);
strcpy(p, method);
for (q=p; *q; q++)
*q=toupper((int)(unsigned char)*q);
for (i=0; authsasl_list[i].sasl_method; i++)
{
if (strcmp(p, authsasl_list[i].sasl_method) == 0 &&
authsasl_list[i].sasl_func)
{
free(p);
return ( (*authsasl_list[i].sasl_func)
(method,
initreply, callback_func,
callback_arg,
authtype_ptr, authdata_ptr));
}
}
free(p);
errno=ENOENT;
return (AUTHSASL_ERROR);
}
int auth_sasl_ex(const char *method,
const char *initresponse,
const char *externalauth,
char *(*callback_func)(const char *, void *),
void *callback_arg,
char **authtype_ptr, /* Returned - AUTHTYPE */
char **authdata_ptr)
{
char *uid;
int n;
if (strcmp(method, "EXTERNAL"))
return auth_sasl(method, initresponse, callback_func,
callback_arg,
authtype_ptr,
authdata_ptr);
if (initresponse && *initresponse)
return AUTHSASL_ERROR;
if (!externalauth || !*externalauth)
return AUTHSASL_ERROR;
if (!initresponse)
{
uid=callback_func("", callback_arg);
if (*uid == '*')
{
free(uid);
return (AUTHSASL_ABORTED);
}
n=authsasl_frombase64(uid);
if (n < 0)
{
free(uid);
return AUTHSASL_ABORTED;
}
uid[n]=0;
if (uid[0])
{
free(uid);
return AUTHSASL_ABORTED;
}
free(uid);
}
if ((*authtype_ptr=strdup("EXTERNAL")) == NULL)
return AUTHSASL_ABORTED;
if ((*authdata_ptr=strdup(externalauth)) == NULL)
{
free(authtype_ptr);
return AUTHSASL_ABORTED;
}
return 0;
}
|