Blame misc/ttyslot.c

Packit Service 82fcde
/*
Packit Service 82fcde
 * Copyright (c) 1988, 1993
Packit Service 82fcde
 *	The Regents of the University of California.  All rights reserved.
Packit Service 82fcde
 *
Packit Service 82fcde
 * Redistribution and use in source and binary forms, with or without
Packit Service 82fcde
 * modification, are permitted provided that the following conditions
Packit Service 82fcde
 * are met:
Packit Service 82fcde
 * 1. Redistributions of source code must retain the above copyright
Packit Service 82fcde
 *    notice, this list of conditions and the following disclaimer.
Packit Service 82fcde
 * 2. Redistributions in binary form must reproduce the above copyright
Packit Service 82fcde
 *    notice, this list of conditions and the following disclaimer in the
Packit Service 82fcde
 *    documentation and/or other materials provided with the distribution.
Packit Service 82fcde
 * 4. Neither the name of the University nor the names of its contributors
Packit Service 82fcde
 *    may be used to endorse or promote products derived from this software
Packit Service 82fcde
 *    without specific prior written permission.
Packit Service 82fcde
 *
Packit Service 82fcde
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
Packit Service 82fcde
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit Service 82fcde
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit Service 82fcde
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
Packit Service 82fcde
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit Service 82fcde
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
Packit Service 82fcde
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit Service 82fcde
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
Packit Service 82fcde
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
Packit Service 82fcde
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
Packit Service 82fcde
 * SUCH DAMAGE.
Packit Service 82fcde
 */
Packit Service 82fcde
Packit Service 82fcde
#if defined(LIBC_SCCS) && !defined(lint)
Packit Service 82fcde
static char sccsid[] = "@(#)ttyslot.c	8.1 (Berkeley) 6/4/93";
Packit Service 82fcde
#endif /* LIBC_SCCS and not lint */
Packit Service 82fcde
Packit Service 82fcde
#include <ttyent.h>
Packit Service 82fcde
#include <alloca.h>
Packit Service 82fcde
#include <stdio.h>
Packit Service 82fcde
#include <string.h>
Packit Service 82fcde
#include <unistd.h>
Packit Service 82fcde
Packit Service 82fcde
int
Packit Service 82fcde
ttyslot (void)
Packit Service 82fcde
{
Packit Service 82fcde
	struct ttyent *ttyp;
Packit Service 82fcde
	int slot;
Packit Service 82fcde
	char *p;
Packit Service 82fcde
	int cnt;
Packit Service 82fcde
	size_t buflen = __sysconf (_SC_TTY_NAME_MAX) + 1;
Packit Service 82fcde
	char *name;
Packit Service 82fcde
Packit Service 82fcde
	if (buflen == 0)
Packit Service 82fcde
	  /* This should be enough if no fixed value is given.  */
Packit Service 82fcde
	  buflen = 32;
Packit Service 82fcde
Packit Service 82fcde
	name = __alloca (buflen);
Packit Service 82fcde
Packit Service 82fcde
	__setttyent();
Packit Service 82fcde
	for (cnt = 0; cnt < 3; ++cnt)
Packit Service 82fcde
		if (__ttyname_r (cnt, name, buflen) == 0) {
Packit Service 82fcde
			if ((p = strrchr (name, '/')))
Packit Service 82fcde
				++p;
Packit Service 82fcde
			else
Packit Service 82fcde
				p = name;
Packit Service 82fcde
			for (slot = 1; (ttyp = __getttyent()); ++slot)
Packit Service 82fcde
				if (!strcmp(ttyp->ty_name, p)) {
Packit Service 82fcde
					__endttyent();
Packit Service 82fcde
					return(slot);
Packit Service 82fcde
				}
Packit Service 82fcde
			break;
Packit Service 82fcde
		}
Packit Service 82fcde
	__endttyent();
Packit Service 82fcde
	return(0);
Packit Service 82fcde
}