Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can someone explain what the following assembly code does?

 int 0x80
share|improve this question

5 Answers

up vote 12 down vote accepted

It passes control to interrupt vector 0x80

See http://en.wikipedia.org/wiki/Interrupt%5Fvector

On Linux, have a look at this: it was used to handle system_call. Of course on another OS this could mean something totally different.

share|improve this answer
2  
Note that int 0x80 is the older way to do a syscall, but there is also the SYSENTER instruction. Some links of interest: tinyurl.com/y9vuc27 kerneltrap.org/node/531 – asveikau Nov 30 '09 at 3:06
@asveikau: thanks for your links! – jldupont Nov 30 '09 at 3:37
1  
by shorten long story that's instructions mean DO IT for instruction was before. – Gunslinger_ Apr 30 '11 at 21:18

int means interrupt, and the number 0x80 is the interrupt number. An interrupt transfers the program flow to whomever is handling that interrupt, which is interrupt 0x80 in this case. In Linux, 0x80 interrupt handler is the kernel, and is used to make system calls to the kernel by other programs.

The kernel is notified about which system call the program wants to make, by examining the value in the register %eax (gas syntax, and EAX in Intel syntax). Each system call have different requirements about the use of the other registers. For example, a value of 1 in %eax means a system call of exit(), and the value in %ebx holds the value of the status code for exit().

share|improve this answer
good explanation.. – pradipta Nov 27 '12 at 8:55

int 0x80 is the assembly language instruction that is used to invoke system calls in Linux on x86 (i.e., Intel-compatible) processors.

http://www.linfo.org/int_0x80.html

share|improve this answer

As mentioned, it causes control to jump to interrupt vector 0x80. In practice what this means (at least under Linux) is that a system call is invoked; the exact system call and arguments are defined by the contents of the registers. For example, exit() can be invoked by setting %eax to 1 followed by 'int 0x80'.

share|improve this answer

It tells the kernel to activate interrupt vector 0x80, which on Linux OSes is the system-call interrupt, used to invoke system functions like open() for files, et cetera.

share|improve this answer
3  
Strictly speaking, it doesn't tell the kernel... It tells the CPU, which looks up the handler in the IDT, which ends up being a pointer to some kernel code. – asveikau Nov 30 '09 at 2:56
True. I suppose the better phrasing would be it tells the CPU to activate the vector, and the vector (as part of the kernel) invokes the function. – Amber Nov 30 '09 at 2:58
Down for "tells the kernel". – Andy Dec 1 '09 at 6:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.