Accessing I/O Ports, Part 2

March 1, 2002, 12:00 AM —  ITworld — 

Descriptors vs. Direct Access
The technique presented last week for accessing I/O ports is portable
and safe but too slow for certain applications. Instead of using a
descriptor, Linux allows a process to write to an I/O port directly,
thereby avoiding the overhead associated with write() and read().

The outb() Syscall
A process can call the function outb() to write directly to an I/O
port. outb() takes two arguments: the data to be written to the I/O
port and the I/O port number. For example, to write the character 0x01
to our remote control, call outb() as follows:

outb(0x01, 0x378+2); /*turn the lights on*/

The use of symbolic constants can make the code more readable:

const char ON=0x01;
const char OFF=0x00;
const int PORT=0x378+2;
outb(OFF, PORT); /*turn the lights off*/

Obtaining Permissions
This is all well and good; however, by default Linux terminates a
process that attempts to access an I/O port directly (with good
reason!). A process that accesses I/O ports directly must get the
necessary permissions beforehand using one of two methods. The first
(and safer) way is to call ioperm(). ioperm() allows a process with
super-user privileges access to each I/O port in the range 0-0x3ff.
Thus, if you wish to access the ports 0x378, 0x379, and 0x380 (the
ports that access /dev/lp1), call ioperm() as follows:

ioperm(0x378, 3, 1);

The first argument is the first port in the range. The second argument
is the number of ports in the range. The last argument is either 1 or
0. The value 1 allows access to the ports in the range and 0 denies
access to them. ioperm() returns 0 on success and -1 on error.
Alternatively, a process with super-user privileges can enable access
to all the I/O ports at once by calling the iopl() function as follows:

iopl(3);

The above call causes a process to switch to what is known as "I/O
protection level 3", which grants a process full access to the I/O bus.
As a rule, you should use ioperm() to obtain permission to access I/O
ports; use iopl() only if your process needs to access ports higher
than 0x3ff.

A note on last week's tip:
The device names "dev/port" and "dev/lp1" should read "/dev/port"
and "/dev/lp1", respectively.

» posted by ITworld staff

ITworld

Sign up for ITworld's Daily newsletter
Follow ITworld on Twitter @IT_world

I like it!
Post a comment
The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
peer-to-peer

Esther Schindler
If the comments are ugly, the code is ugly

claird
SVG a graphics format for 21st century

pasmith
Take Chrome OS for a test spin

Sandra Henry-Stocker
Solaris Tip: Have Your Files Changed Since Installation?

sjvn
64-bits of protection?

jfruh
Android fragments vs. the iPhone monolith

mikelgan
What Gizmodo missed about the Pro WX Wireless USB disk drive

 

Sidekick: The Good News & the Bad News
Either way you look at it Microsoft Data Center management did not follow standards or best practices in this failure. In which case it makes me wonder more about the outsourcing of corporate data much less personal data.
- mburton325

Join the conversation here

The Daily Tip

The Daily TipQuick, practical advice for IT pros. Made fresh daily.

Hot tips:

Want to cash in on your IT savvy? Send your tip to tips@itworld.com. If we post it, we'll send you a $25 Amazon e-gift card.

Newsletters

Subscribe to ITWORLD TODAY and receive the latest IT news and analysis.

I would like to receive offers via email from ITworld partners.
By clicking submit you agree to the terms and conditions outlined in ITworld's privacy policy.
Featured Sponsor

AISO founders envisioned a Web hosting company that was environmentally friendly. While the company employed energy-efficient innovations like solar panels, its infrastructure produced unacceptable power and cooling requirements. Find out how AISO leveraged AMD technology to overcome their challenge in this case study white paper.

In this whitepaper, Scalar explores the opportunity to change the landscape with respect to mission critical databases built around Oracle. Leveraging technologies such as Linux, high-end commodity processing power and Oracle RAC technology to architect, design, build and maintain database infrastructure that delivers maximum availability, reliability and performance at a fraction of traditional cost.

On a typical day, weather.com, the Web site for The Weather Channel in Atlanta, serves up between 15 million and 20 million page views. But in September 2004, when back-to-back hurricanes ransacked Florida, the peak traffic on one day more than tripled: over 70 million page views by more than 7 million unique visitors. Read the full success story now.

Marketplace