/* cvm/cvm-unix.c - UNIX/POSIX-standard CVM module * Copyright (C)2006 Bruce Guenter * * 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 #include #include #include #include #include #include #include "module.h" const char program[] = "cvm-unix"; extern char* crypt(const char* key, const char* salt); int cvm_module_init(void) { return 0; } extern int cvm_getpwnam(const char*, struct passwd**); static struct passwd* pw; static struct group* gr; int cvm_module_lookup(void) { int err; if ((err = cvm_getpwnam(cvm_module_credentials[CVM_CRED_ACCOUNT].s, &pw)) != 0) return err; if (pw->pw_passwd == 0) return CVME_PERMFAIL; return 0; } int cvm_module_authenticate(void) { CVM_CRED_REQUIRED(PASSWORD); if (strcmp(crypt(cvm_module_credentials[CVM_CRED_PASSWORD].s, pw->pw_passwd), pw->pw_passwd) != 0) return CVME_PERMFAIL; return 0; } int cvm_module_results(void) { char* tmp; if ((tmp = strchr(pw->pw_gecos, ',')) != 0) *tmp = 0; cvm_fact_username = pw->pw_name; cvm_fact_userid = pw->pw_uid; cvm_fact_groupid = pw->pw_gid; cvm_fact_realname = pw->pw_gecos; cvm_fact_directory = pw->pw_dir; cvm_fact_shell = pw->pw_shell; cvm_module_fact_uint(CVM_FACT_SUPP_GROUPID, pw->pw_gid); if (cvm_fact_groupname) free((char*)cvm_fact_groupname); cvm_fact_groupname = 0; setgrent(); while ((gr = getgrent()) != 0) { if (gr->gr_gid == pw->pw_gid) cvm_fact_groupname = strdup(gr->gr_name); else { unsigned i; for (i = 0; gr->gr_mem[i]; i++) if (strcmp(gr->gr_mem[i], pw->pw_name) == 0) { cvm_module_fact_uint(CVM_FACT_SUPP_GROUPID, gr->gr_gid); break; } } } endgrent(); return 0; } void cvm_module_stop(void) { }