]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man2/ioperm.2
Wrapped long lines, wrapped at sentence boundaries; stripped trailing
[thirdparty/man-pages.git] / man2 / ioperm.2
CommitLineData
fea681da
MK
1.\" Hey Emacs! This file is -*- nroff -*- source.
2.\"
3.\" Copyright (c) 1993 Michael Haardt
4.\" (michael@moria.de)
5.\" Fri Apr 2 11:32:09 MET DST 1993
c13182ef 6.\"
fea681da
MK
7.\" This is free documentation; you can redistribute it and/or
8.\" modify it under the terms of the GNU General Public License as
9.\" published by the Free Software Foundation; either version 2 of
10.\" the License, or (at your option) any later version.
11.\"
12.\" The GNU General Public License's references to "object code"
13.\" and "executables" are to be interpreted as the output of any
14.\" document formatting or typesetting system, including
15.\" intermediate and printed output.
16.\"
17.\" This manual is distributed in the hope that it will be useful,
18.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
19.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20.\" GNU General Public License for more details.
21.\"
22.\" You should have received a copy of the GNU General Public
23.\" License along with this manual; if not, write to the Free
24.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
25.\" USA.
26.\"
27.\" Modified Sat Jul 24 15:12:05 1993 by Rik Faith <faith@cs.unc.edu>
c13182ef 28.\" Modified Tue Aug 1 16:27 1995 by Jochen Karrer
fea681da
MK
29.\" <cip307@cip.physik.uni-wuerzburg.de>
30.\" Modified Tue Oct 22 08:11:14 EDT 1996 by Eric S. Raymond <esr@thyrsus.com>
31.\" Modified Mon Feb 15 17:28:41 CET 1999 by Andries E. Brouwer <aeb@cwi.nl>
305a0578 32.\" Modified, 27 May 2004, Michael Kerrisk <mtk-manpages@gmx.net>
fea681da
MK
33.\" Added notes on capability requirements
34.\"
c72dada1 35.TH IOPERM 2 2004-05-27 "Linux 2.6.6" "Linux Programmer's Manual"
fea681da
MK
36.SH NAME
37ioperm \- set port input/output permissions
38.SH SYNOPSIS
39.B #include <unistd.h>
40/* for libc5 */
41.br
42.B #include <sys/io.h>
43/* for glibc */
44.sp
45.BI "int ioperm(unsigned long " from ", unsigned long " num ", int " turn_on );
46.SH DESCRIPTION
f3634346 47\fBioperm\fP() sets the port access permission bits for the process for
fea681da 48\fInum\fP bytes starting from port address \fBfrom\fP to the value
c13182ef 49\fBturn_on\fP.
f3634346 50If \fBturn_on\fP is non-zero, the calling process must be privileged
5bb80360 51.RB ( CAP_SYS_RAWIO ).
fea681da 52
c13182ef 53Only the first 0x3ff I/O ports can be specified in this manner.
f3634346 54For more ports, the
e1d6264d 55.BR iopl ()
fea681da 56function must be used.
4a225b7a 57Permissions are not inherited on
c13182ef
MK
58.BR fork (),
59but on
4a225b7a 60.BR exec ()
c13182ef 61they are.
f3634346 62This is useful for giving port access permissions to non-privileged tasks.
fea681da
MK
63
64This call is mostly for the i386 architecture.
65On many other architectures it does not exist or will always
66return an error.
67.SH "RETURN VALUE"
c13182ef
MK
68On success, zero is returned.
69On error, \-1 is returned, and
fea681da
MK
70.I errno
71is set appropriately.
72.SH ERRORS
73.TP
74.B EINVAL
75Invalid values for
76.I from
77or
78.IR num .
79.TP
80.B EIO
81(on ppc) This call is not supported.
82.TP
f3634346
MK
83.B ENOMEM
84.\" Could not allocate I/O bitmap.
85Out of memory.
86.TP
fea681da 87.B EPERM
f3634346 88The calling process has insufficient privilege.
fea681da 89.SH "CONFORMING TO"
e511ffb6 90\fBioperm\fP() is Linux specific and should not be used in programs
fea681da
MK
91intended to be portable.
92.SH NOTES
93Libc5 treats it as a system call and has a prototype in
94.IR <unistd.h> .
c13182ef 95Glibc1 does not have a prototype.
f3634346 96Glibc2 has a prototype both in
fea681da
MK
97.I <sys/io.h>
98and in
99.IR <sys/perm.h> .
100Avoid the latter, it is available on i386 only.
101.SH "SEE ALSO"
102.BR iopl (2),
103.BR capabilities (7)