Import Upstream version 0.69.0
[hcoop/debian/courier-authlib.git] / authpgsql.c
CommitLineData
d9898ee8 1/*
ac40fd9e 2** Copyright 2000-2008 Double Precision, Inc. See COPYING for
d9898ee8 3** distribution information.
4*/
5#if HAVE_CONFIG_H
6#include "courier_auth_config.h"
7#endif
8#include <stdio.h>
9#include <stdlib.h>
10#include <string.h>
11#include <errno.h>
12#include <pwd.h>
13#if HAVE_UNISTD_H
14#include <unistd.h>
15#endif
16
17#include "auth.h"
18#include "authpgsql.h"
0e333c05 19#include "courierauth.h"
b0322a85 20#include "courierauthstaticlist.h"
d9898ee8 21#include "courierauthdebug.h"
ac40fd9e 22#include "libhmac/hmac.h"
d9898ee8 23
24extern void auth_pgsql_enumerate( void(*cb_func)(const char *name,
25 uid_t uid,
26 gid_t gid,
27 const char *homedir,
28 const char *maildir,
29 const char *options,
30 void *void_arg),
31 void *void_arg);
32
d9898ee8 33static int auth_pgsql_cram(const char *service,
34 const char *authtype, char *authdata,
35 int (*callback_func)(struct authinfo *, void *),
36 void *callback_arg)
37{
38 struct cram_callback_info cci;
39
40 if (auth_get_cram(authtype, authdata, &cci))
41 return (-1);
42
43 cci.callback_func=callback_func;
44 cci.callback_arg=callback_arg;
45
46 return auth_pgsql_pre(cci.user, service, &auth_cram_callback, &cci);
47}
d9898ee8 48
49int auth_pgsql(const char *service, const char *authtype, char *authdata,
50 int (*callback_func)(struct authinfo *, void *),
51 void *callback_arg)
52{
53 if (strcmp(authtype, AUTHTYPE_LOGIN) == 0)
54 return (auth_pgsql_login(service, authdata,
55 callback_func, callback_arg));
56
d9898ee8 57 return (auth_pgsql_cram(service, authtype, authdata,
58 callback_func, callback_arg));
d9898ee8 59}
60
61extern int auth_pgsql_pre(const char *user, const char *service,
62 int (*callback)(struct authinfo *, void *),
63 void *arg);
64
65static struct authstaticinfo authpgsql_info={
66 "authpgsql",
67 auth_pgsql,
68 auth_pgsql_pre,
69 auth_pgsql_cleanup,
70 auth_pgsql_changepw,
71 auth_pgsql_cleanup,
72 auth_pgsql_enumerate};
73
74struct authstaticinfo *courier_authpgsql_init()
75{
76 return &authpgsql_info;
77}