cdown / rpms / util-linux

Forked from rpms/util-linux 2 years ago
Clone
05ad79
/*	$OpenBSD: nologin.c,v 1.2 1997/04/04 16:51:37 millert Exp $	*/
05ad79
05ad79
/*
05ad79
 * Copyright (c) 1997, Jason Downs.  All rights reserved.
05ad79
 *
05ad79
 * Redistribution and use in source and binary forms, with or without
05ad79
 * modification, are permitted provided that the following conditions
05ad79
 * are met:
05ad79
 * 1. Redistributions of source code must retain the above copyright
05ad79
 *    notice, this list of conditions and the following disclaimer.
05ad79
 * 2. Redistributions in binary form must reproduce the above copyright
05ad79
 *    notice, this list of conditions and the following disclaimer in the
05ad79
 *    documentation and/or other materials provided with the distribution.
05ad79
 *
05ad79
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS
05ad79
 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
05ad79
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
05ad79
 * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT,
05ad79
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
05ad79
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
05ad79
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
05ad79
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
05ad79
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
05ad79
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
05ad79
 * SUCH DAMAGE.
05ad79
 */
05ad79
05ad79
#include <sys/types.h>
05ad79
#include <fcntl.h>
05ad79
#include <string.h>
05ad79
#include <unistd.h>
05ad79
#include <stdlib.h>
05ad79
05ad79
/* Distinctly different from _PATH_NOLOGIN. */
05ad79
#define _PATH_NOLOGIN_TXT	"/etc/nologin.txt"
05ad79
05ad79
#define DEFAULT_MESG	"This account is currently not available.\n"
05ad79
05ad79
/*ARGSUSED*/
05ad79
int main(argc, argv)
05ad79
	int argc;
05ad79
	char *argv[];
05ad79
{
05ad79
	int nfd, nrd;
05ad79
	char nbuf[128];
05ad79
05ad79
	nfd = open(_PATH_NOLOGIN_TXT, O_RDONLY);
05ad79
	if (nfd < 0) {
05ad79
		write(STDOUT_FILENO, DEFAULT_MESG, strlen(DEFAULT_MESG));
05ad79
		exit (1);
05ad79
	}
05ad79
05ad79
	while ((nrd = read(nfd, nbuf, sizeof(nbuf))) > 0)
05ad79
		write(STDOUT_FILENO, nbuf, nrd);
05ad79
	close (nfd);
05ad79
05ad79
	exit (1);
05ad79
}