#include "macros.h"
#include <sys/wait.h>
#include "atf-c.h"
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include <unistd.h>
ATF_TC(getlogin_r_err);
ATF_TC_HEAD(getlogin_r_err, tc)
{
atf_tc_set_md_var(tc, "descr", "Test errors from getlogin_r(2)");
}
ATF_TC_BODY(getlogin_r_err, tc)
{
char small[0];
ATF_REQUIRE(getlogin_r(small, sizeof(small)) == ERANGE);
}
ATF_TC(getlogin_same);
ATF_TC_HEAD(getlogin_same, tc)
{
atf_tc_set_md_var(tc, "descr", "getlogin(2) vs. getlogin_r(2)");
}
ATF_TC_BODY(getlogin_same, tc)
{
char buf[LOGIN_NAME_MAX];
char *str;
str = getlogin();
if (str == NULL)
return;
ATF_REQUIRE(getlogin_r(buf, sizeof(buf)) == 0);
if (strcmp(str, buf) != 0)
atf_tc_fail("getlogin(2) and getlogin_r(2) differ");
}
ATF_TC(setlogin_basic);
ATF_TC_HEAD(setlogin_basic, tc)
{
atf_tc_set_md_var(tc, "descr", "Test that setlogin(2) works");
atf_tc_set_md_var(tc, "require.user", "root");
}
ATF_TC_BODY(setlogin_basic, tc)
{
char *name;
pid_t pid;
int sta;
pid = fork();
ATF_REQUIRE(pid >= 0);
if (pid == 0) {
(void)setsid();
if (setlogin("foobar") != 0)
_exit(EXIT_FAILURE);
name = getlogin();
if (name == NULL)
_exit(EXIT_FAILURE);
if (strcmp(name, "foobar") != 0)
_exit(EXIT_FAILURE);
_exit(EXIT_SUCCESS);
}
(void)wait(&sta);
if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
atf_tc_fail("setlogin(2) failed to set login name");
}
ATF_TC(setlogin_err);
ATF_TC_HEAD(setlogin_err, tc)
{
atf_tc_set_md_var(tc, "descr", "Test errors from setlogin(2)");
atf_tc_set_md_var(tc, "require.user", "root");
}
ATF_TC_BODY(setlogin_err, tc)
{
char buf[LOGIN_NAME_MAX + 1];
char *name;
pid_t pid;
int sta;
pid = fork();
ATF_REQUIRE(pid >= 0);
(void)memset(buf, 'x', sizeof(buf));
if (pid == 0) {
(void)setsid();
errno = 0;
if (setlogin(buf) != -1)
_exit(EINVAL);
if (errno != EINVAL)
_exit(EINVAL);
errno = 0;
if (setlogin((void *)-1) != -1)
_exit(EFAULT);
if (errno != EFAULT)
_exit(EFAULT);
name = getlogin();
if (name == NULL)
_exit(EXIT_FAILURE);
if (strcmp(name, "foobar") == 0)
_exit(EXIT_FAILURE);
_exit(EXIT_SUCCESS);
}
(void)wait(&sta);
if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS) {
if (WEXITSTATUS(sta) == EFAULT)
atf_tc_fail("expected EFAULT, but the call succeeded");
if (WEXITSTATUS(sta) == EINVAL)
atf_tc_fail("expected EINVAL, but the call succeeded");
atf_tc_fail("setlogin(2) failed, but login name was set");
}
}
ATF_TC(setlogin_perm);
ATF_TC_HEAD(setlogin_perm, tc)
{
atf_tc_set_md_var(tc, "descr", "Test setlogin(2) as normal user");
atf_tc_set_md_var(tc, "require.user", "unprivileged");
}
ATF_TC_BODY(setlogin_perm, tc)
{
char *name;
pid_t pid;
int sta;
pid = fork();
ATF_REQUIRE(pid >= 0);
if (pid == 0) {
(void)setsid();
errno = 0;
if (setlogin("foobar") != -1)
_exit(EXIT_FAILURE);
if (errno != EPERM)
_exit(EXIT_FAILURE);
name = getlogin();
if (name == NULL)
_exit(EXIT_FAILURE);
if (strcmp(name, "foobar") == 0)
_exit(EXIT_FAILURE);
_exit(EXIT_SUCCESS);
}
(void)wait(&sta);
if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
atf_tc_fail("login name was set as an unprivileged user");
}
ATF_TP_ADD_TCS(tp)
{
ATF_TP_ADD_TC(tp, getlogin_r_err);
ATF_TP_ADD_TC(tp, getlogin_same);
ATF_TP_ADD_TC(tp, setlogin_basic);
ATF_TP_ADD_TC(tp, setlogin_err);
ATF_TP_ADD_TC(tp, setlogin_perm);
return atf_no_error();
}