GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: sbin/nologin/nologin.c Lines: 0 10 0.0 %
Date: 2016-12-06 Branches: 0 8 0.0 %

Line Branch Exec Source
1
/*	$OpenBSD: nologin.c,v 1.6 2015/10/13 07:10:38 doug Exp $	*/
2
3
/*
4
 * Copyright (c) 1997, Jason Downs.  All rights reserved.
5
 *
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions
8
 * are met:
9
 * 1. Redistributions of source code must retain the above copyright
10
 *    notice, this list of conditions and the following disclaimer.
11
 * 2. Redistributions in binary form must reproduce the above copyright
12
 *    notice, this list of conditions and the following disclaimer in the
13
 *    documentation and/or other materials provided with the distribution.
14
 *
15
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS
16
 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
 * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT,
19
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
22
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25
 * SUCH DAMAGE.
26
 */
27
28
#include <sys/types.h>
29
#include <err.h>
30
#include <fcntl.h>
31
#include <stdio.h>
32
#include <stdlib.h>
33
#include <string.h>
34
#include <unistd.h>
35
36
/* Distinctly different from _PATH_NOLOGIN. */
37
#define _PATH_NOLOGIN_TXT	"/etc/nologin.txt"
38
39
#define DEFAULT_MESG	"This account is currently not available.\n"
40
41
/*ARGSUSED*/
42
int
43
main(int argc, char *argv[])
44
{
45
	int nfd;
46
	ssize_t nrd;
47
	char nbuf[BUFSIZ];
48
49
	if (pledge("stdio rpath cpath wpath", NULL) == -1)
50
		err(1, "pledge");
51
52
	nfd = open(_PATH_NOLOGIN_TXT, O_RDONLY);
53
	if (nfd < 0) {
54
		write(STDOUT_FILENO, DEFAULT_MESG, strlen(DEFAULT_MESG));
55
		exit (1);
56
	}
57
58
	while ((nrd = read(nfd, nbuf, sizeof(nbuf))) != -1 && nrd != 0)
59
		write(STDOUT_FILENO, nbuf, nrd);
60
	close (nfd);
61
62
	exit (1);
63
}