/* $OpenBSD: user_pwd.c,v 1.1 2011/12/13 22:04:35 eric Exp $ */ /* * Copyright (c) 2011 Gilles Chehade * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "smtpd.h" #include "log.h" int user_getpw_ret(struct mta_user *, struct passwd *); /* helper */ int user_getpwnam(struct mta_user *, char *); int user_getpwuid(struct mta_user *, uid_t); struct user_backend user_backend_pwd = { user_getpwnam, user_getpwuid, }; int user_getpw_ret(struct mta_user *u, struct passwd *pw) { if (strlcpy(u->username, pw->pw_name, sizeof (u->username)) >= sizeof (u->username)) return 0; if (strlcpy(u->password, pw->pw_passwd, sizeof (u->password)) >= sizeof (u->password)) return 0; if (strlcpy(u->directory, pw->pw_dir, sizeof (u->directory)) >= sizeof (u->directory)) return 0; u->uid = pw->pw_uid; u->gid = pw->pw_gid; return 1; } int user_getpwnam(struct mta_user *u, char *username) { struct passwd *pw; pw = getpwnam(username); if (pw == NULL) return 0; return user_getpw_ret(u, pw); } int user_getpwuid(struct mta_user *u, uid_t uid) { struct passwd *pw; pw = getpwuid(uid); if (pw == NULL) return 0; return user_getpw_ret(u, pw); }