ioctl.c revision 92913
138451Smsmith/*	$NetBSD: ioctl.c,v 1.4 1994/10/30 21:48:24 cgd Exp $	*/
238451Smsmith
338451Smsmith/*-
438451Smsmith * Copyright (c) 1993
538451Smsmith *	The Regents of the University of California.  All rights reserved.
638451Smsmith *
738451Smsmith * This code is derived from software contributed to Berkeley by
838451Smsmith * The Mach Operating System project at Carnegie-Mellon University.
938451Smsmith *
1038451Smsmith * Redistribution and use in source and binary forms, with or without
1138451Smsmith * modification, are permitted provided that the following conditions
1238451Smsmith * are met:
1338451Smsmith * 1. Redistributions of source code must retain the above copyright
1438451Smsmith *    notice, this list of conditions and the following disclaimer.
1538451Smsmith * 2. Redistributions in binary form must reproduce the above copyright
1638451Smsmith *    notice, this list of conditions and the following disclaimer in the
1738451Smsmith *    documentation and/or other materials provided with the distribution.
1838451Smsmith * 3. All advertising materials mentioning features or use of this software
1938451Smsmith *    must display the following acknowledgement:
2038451Smsmith *	This product includes software developed by the University of
2138451Smsmith *	California, Berkeley and its contributors.
2238451Smsmith * 4. Neither the name of the University nor the names of its contributors
2338451Smsmith *    may be used to endorse or promote products derived from this software
2438451Smsmith *    without specific prior written permission.
2538451Smsmith *
2638451Smsmith * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2738451Smsmith * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2838451Smsmith * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2938451Smsmith * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
3038451Smsmith * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3138451Smsmith * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3238451Smsmith * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3338451Smsmith * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3438451Smsmith * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3538451Smsmith * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3638451Smsmith * SUCH DAMAGE.
3738451Smsmith *
3838451Smsmith *	@(#)ioctl.c	8.1 (Berkeley) 6/11/93
3938451Smsmith *
4038451Smsmith *
4138451Smsmith * Copyright (c) 1989, 1990, 1991 Carnegie Mellon University
4238451Smsmith * All Rights Reserved.
4338451Smsmith *
4438451Smsmith * Author: Alessandro Forin
4538451Smsmith *
4638451Smsmith * Permission to use, copy, modify and distribute this software and its
4738451Smsmith * documentation is hereby granted, provided that both the copyright
4838451Smsmith * notice and this permission notice appear in all copies of the
4938451Smsmith * software, derivative works or modified versions, and any portions
5038451Smsmith * thereof, and that both notices appear in supporting documentation.
5138451Smsmith *
5238451Smsmith * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
5338451Smsmith * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
5438451Smsmith * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
5538451Smsmith *
5638451Smsmith * Carnegie Mellon requests users of this software to return to
5738451Smsmith *
5838451Smsmith *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
5938451Smsmith *  School of Computer Science
6038451Smsmith *  Carnegie Mellon University
6138451Smsmith *  Pittsburgh PA 15213-3890
6238451Smsmith *
6338451Smsmith * any improvements or extensions that they make and grant Carnegie the
6438451Smsmith * rights to redistribute these changes.
6538451Smsmith */
6638451Smsmith
6784221Sdillon#include <sys/cdefs.h>
6884221Sdillon__FBSDID("$FreeBSD: head/lib/libstand/ioctl.c 92913 2002-03-21 23:39:28Z obrien $");
6984221Sdillon
7038451Smsmith#include "stand.h"
7138451Smsmith
7238451Smsmithint
7338451Smsmithioctl(fd, cmd, arg)
7438451Smsmith	int fd;
7538451Smsmith	u_long cmd;
7638451Smsmith	char *arg;
7738451Smsmith{
7892913Sobrien	struct open_file *f = &files[fd];
7938451Smsmith
8038451Smsmith	if ((unsigned)fd >= SOPEN_MAX || f->f_flags == 0) {
8138451Smsmith		errno = EBADF;
8238451Smsmith		return (-1);
8338451Smsmith	}
8438451Smsmith	if (f->f_flags & F_RAW) {
8538451Smsmith		errno = (f->f_dev->dv_ioctl)(f, cmd, arg);
8638451Smsmith		if (errno)
8738451Smsmith			return (-1);
8838451Smsmith		return (0);
8938451Smsmith	}
9038451Smsmith	errno = EIO;
9138451Smsmith	return (-1);
9238451Smsmith}
93