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
|
/* vmlookup.c - vmailmgr CVM lookup routines
* Copyright (C) 2010 Bruce Guenter <bruce@untroubled.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <sys/types.h>
#include <errno.h>
#include <grp.h>
#include <pwd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#include <bglibs/cdb.h>
#include <bglibs/cdb.h>
#include <bglibs/dict.h>
#include <bglibs/dict.h>
#include <bglibs/iobuf.h>
#include <bglibs/path.h>
#include <bglibs/str.h>
#include <vmailmgr/vpwentry.h>
#include "module.h"
#include "qmail.h"
#include "cvm-vmailmgr.h"
static str account;
static str baseuser;
/* Results from looking up the user */
struct qmail_user vmuser;
int lookup_reinit(void)
{
return 0;
}
int lookup_init(void)
{
if (!str_truncate(&account, 0) ||
!str_truncate(&domain, 0) ||
!str_truncate(&baseuser, 0) ||
!str_truncate(&virtuser, 0))
return CVME_GENERAL;
if (qmail_lookup_init() != 0)
return CVME_IO;
return 0;
}
int lookup_virtuser(void)
{
int err;
int fd;
struct cdb cdb;
DEBUG("cvm domain = '", cvm_module_credentials[CVM_CRED_DOMAIN].s, "'");
switch (qmail_lookup_cvm(&vmuser, &domain, &baseuser, &virtuser)) {
case -1:
return CVME_IO;
case 0:
break;
default:
/* Either the domain was not found, or it was found pointing to a
* nonexistant user. In either case, there is no vmailmgr table to
* look up. */
cvm_module_fact_uint(CVM_FACT_OUTOFSCOPE, 1);
return CVME_PERMFAIL;
}
if (virtuser.len == 0) {
cvm_module_fact_uint(CVM_FACT_OUTOFSCOPE, 1);
return CVME_PERMFAIL;
}
memset(&cdb, 0, sizeof cdb);
str_lower(&virtuser);
/* Found a virtual user, authenticate it. */
if (chdir(vmuser.homedir.s) == -1) return CVME_IO;
if ((fd = open(pwfile, O_RDONLY)) == -1) {
if (errno == ENOENT) {
cvm_module_fact_uint(CVM_FACT_OUTOFSCOPE, 1);
return CVME_PERMFAIL;
}
return CVME_IO;
}
cdb_init(&cdb, fd);
switch (cdb_get(&cdb, &virtuser, &vpwdata)) {
case -1:
DEBUG("cdb_get returned error", 0, 0);
err = CVME_IO;
break;
case 0:
DEBUG("cdb_get failed", 0, 0);
/* Only handle the default user when in lookup mode, as
authenticating the default user shouldn't happen. */
if (cvm_module_lookup_secret != 0) {
switch (cdb_get(&cdb, &default_user, &vpwdata)) {
case -1:
DEBUG("cdb_get returned error", 0, 0);
err = CVME_IO;
break;
case 0:
DEBUG("cdb_get failed", 0, 0);
err = CVME_PERMFAIL;
break;
default:
err = 0;
}
}
else
err = CVME_PERMFAIL;
break;
default:
err = 0;
}
cdb_free(&cdb);
close(fd);
if (err == CVME_PERMFAIL)
cvm_module_fact_uint(CVM_FACT_OUTOFSCOPE, 0);
return err;
}
|