Tagged Questions
0
votes
1answer
34 views
Does cmpxchg call provided by linux ever crash?
I am using cmpxchg() provided by linux kernel (SLES11-SP2)
Its panicking.
the exact point its crashing is in line 2005:
if (cmpxchg(var, old, new) == old)
2002: 48 89 d8 ...
-1
votes
3answers
109 views
using file descriptor from system call in C
hey I would like to open and read a file using system calls
and print the data in it letter by letter
I have the function system_call in an assembly file
and I want to "save" to pointer to the file ...
0
votes
2answers
62 views
Assembly code support in source insight
Has anybody tried browsing assembly language file (filename.s) in source insight.
I just added whole Linux kernel project into source insight but it does not support any of the
assembly files.
Has ...
1
vote
1answer
50 views
Can FXSAVE be executed twice before an FXRSTOR?
While hacking the Linux kernel, I noticed that it would execute an FXSAVE instruction before performing FPU related tasks. I understand that the FXSAVE instruction will save the FPU state to a ...
0
votes
1answer
124 views
Can someone explain the power control register in exynos ARM?
In the Linux kernel, more accurately /arch/arm/mach-exynos/cpuidle.c on 3.9-rc6, the lines reads
static unsigned int g_pwr_ctrl, g_diag_reg;
static void save_cpu_arch_register(void)
{
/*read ...
1
vote
1answer
98 views
PC and LR in same function in Android Kernel
I am facing a problem in which the PC1 and LR2 both are pointing with in the function cpuacct_charge() in the kernel's sched.c. Are there any scenario's in which this might happen? My analysis shows ...
4
votes
1answer
189 views
why switch_to use push+jmp+ret to change EIP, instead of jmp directly?
in arch/x86/include/asm/switch_to.h , there's the definition of macro switch_to, the key lines which do the real thread switch miracle read like this:
asm volatile("pushfl\n\t" /* save flags ...
0
votes
1answer
83 views
raising a softirq in assembly x86 or ARM
I am familiar with the instruction int on x86.
Is it possible to inline assembly int my_unique_number and use
requst_irq(my_unique_number , function); with a function to be
called when the ...
2
votes
1answer
125 views
Is there some authority files about instruction `jmpi`
I am learning how Linux works. I have encountered a strange assembly language instruction, jmpi. I can find some explanation at various websites, but strangely I can't find it in assembly language ...
1
vote
1answer
139 views
Linux system call invocation for x86
I am trying to understand the way system-calls are invoked on a Linux machine. For this, I ran a guest machine with a Linux 3.0.43 kernel on the QEMU emulator.
In order to know the system call ...
1
vote
2answers
154 views
memory access when writing a linux kernel module in assembler
i try writing a kernel module in assembler. In one time i needed a global vars. I define a dword in .data (or .bss) section, and in init function i try add 1 to var. My program seccesfully make, but ...
4
votes
1answer
333 views
Writing x86_64 linux kernel module in assembler
I try write simple kernel module (v3.6) in nasm, but insmod say me:
$ sudo insmod ./hello.ko
insmod: ERROR: could not insert module ./hello.ko: Invalid module format
$ echo $?
1
I compile my code ...
3
votes
2answers
133 views
what's meaning of f in “js 2f\n\t”?
the codes:
extern inline int strncmp(const char * cs, const char * ct, int count)
{
register int __res;
__asm__("cld\n"
"1:\tdecl %3\n\t"
"js 2f\n\t"
"lodsb\n\t"
"scasb\n\t"
"jne 3f\n\t"
"testb %%al, ...
3
votes
1answer
362 views
Linux Kernel systemcall call with an “int 0x80”
I am studying the Linux kernel and at the moment I try to implement my own system call.
In the kernel code it looks the following:
asmlinkage long sys_my_syscall()
{
printk("My system call\n");
...
2
votes
1answer
46 views
GAS: Explanation of _cfi postfix
what does mean _cfi postfix in some GAS commands, e.g. {pushl,popl}_cfi?
6
votes
2answers
944 views
Is it viable to write a Linux kernel-mode debugger for Intel x86-64 in Common Lisp, and with which Common Lisp implementation[s]?
I'm interested in developing some kind of ring0 kernel-mode debugger for x86-64 in Common Lisp that would be loaded as a Linux kernel module and as I prefer Common Lisp to C in general programming, I ...
0
votes
1answer
46 views
The need for setting up a stack in user mode?
I have been playing with assembly and OS development for a while (in both real and protected modes) and since I was working in kernel mode ("Ring 0" a.k.a "Full Privileges") I always had to worry ...
1
vote
1answer
158 views
Segmentation fault in program loaded with custom binfmt handler; same program in ELF format runs seamlessly
I've been working on a custom PE binfmt handler for Ubuntu Linux 12.04, Intel x86_64 architecture (if this sounds familiar, I've posted a few questions related to this project already). I'll apologize ...
2
votes
1answer
156 views
.text in memory being overwritten during execution
I've been working on a simple PE process loader for Linux. I think I've gotten the basics down; much of the code I use comes from binfmt_elf.c and binfmt_aout.c. My test executable is about is simple ...
2
votes
2answers
113 views
How to read the machine code in linux crash info
There are machine codes in linux crash info.
Is there any tool can translate these machine codes to assembly instructions?
code of(ffffffffa0f04ce2):
0xc3 0x89 0xfa 0x66 0xed 0x0f 0xb7 0xc0 0xc3 0x89 ...
0
votes
2answers
140 views
iret error:general protection fault fffc
I have a sample code run in kernel(2.6.30 x86_64) mode(r0),trying to simulate a iret.I push variables under intel manual's guide.but it turns out a runtime fault right in the pos of iret instruction:
...
2
votes
0answers
187 views
how to simulate a iret on linux x86_64
I am writing a debugger based on Intel VT.
As the iret instruction's performance in vmx-guest is changed while NMI-Exiting=1.
So I should handle NMI in the vmx-host myself,otherwise,guest will have ...
1
vote
1answer
497 views
what's the difference between iret and iretd,iretq?
I want to simulate a iret condition on a Linux x86_64 server.
I found there are three instructions
iret:operand size 16
iretd:operand size 32
iretq:operand size 64
I can't tell the difference of ...
9
votes
2answers
405 views
Is there something wrong with my spin lock?
Here is my implementation of a spin lock, but it seems it can not protect the critical code. Is there something wrong with my implementation?
static __inline__ int xchg_asm(int* lock, int val)
{
...
2
votes
1answer
92 views
Does the flag register need to be saved when an interrupt occurs, or a process scheduling happens?
I know all the general registers are pushed on the stack when the an interrupts happen, but I can't see any code that flag register are save. The assembly instruction like setl which depends on the ...
1
vote
2answers
223 views
How to use physical address in MOV instruction?
I want to access physical address 0xfee00020, which is a location of memory map of APIC registers. I want to read or write data to this location using the "MOV" instruction. Should I do physical to ...
2
votes
1answer
807 views
How to get the interrupt vector?
When I run "cat /proc/interrupts", I can get the following:
CPU0 CPU1
0: 253 1878 IO-APIC-edge timer
1: 3 0 IO-APIC-edge i8042
7: ...
3
votes
3answers
174 views
What is the scope of lock prefix?
It is said an assembly instruction prefixed by "lock" is atomic. I want to know if "lock" can only affect one assembly instruction; Is an assembly instruction itself not atomic?
Here is an example of ...
0
votes
2answers
327 views
Inline assembly errors: junk `-4(%ebp)' after register
GCC tells junk `-4(%ebp)' after register errors for my following codes:
static __inline__ int xchg_asm(int* lock, int val)
{
int ret;
__asm__ __volatile__(
...
3
votes
1answer
347 views
What's the purpose of the UD2 opcode in the Linux kernel?
I have found the following fragment in the Linux kernel (not the corresponding C code though), somewhere during the start up phase. You can clearly see the 0F 0B parts, which stand for the UD2 opcode ...
1
vote
1answer
143 views
Can a masked interrupt be received after the mask canceled?
If an interrupt is masked by "cli" instruction, can the same interrupt (not interrupts of the same source)be received by the cpu after a "sti" instruction?
1
vote
1answer
96 views
What's the values of all the general-purpose registers, when a program starts running? [duplicate]
Possible Duplicate:
What is default register state when program launches (asm, linux)?
I know the %esp and %eip should set to proper values by the OS kernel, so that the program can run, ...
2
votes
1answer
374 views
iret with 13 interrupt(general protection fault), and error 0x18?
I write a kernel by myself, after the first page error interrupt handler, when IRET is executed, it causes an interrupt 13(general protection), and error code is 0x18. I don't know what is wrong, the ...
0
votes
2answers
149 views
Can a macro be used in inline asm?
code as following:
\#define CS 0x18
asm ("pushl CS"
);
or something as an input argument:
asm("pushl %0 \n\t"
:"m"(CS) \
)
can the macro CS be used in the above inline asm code?
1
vote
3answers
301 views
Must IRET be used when returning from an interrupt?
IRET can restore the registers from the stack,including EFLAGS, ESP, EIP and so on, but we can also restore the registers all by ourselves. For example, "movl" can be used to restore the %esp ...
3
votes
1answer
233 views
asm code containing %0,what does that mean?
My asm knowledge is so limited, I need to know the following codes:
movl %%esp %0
Does %0 represent a register, a memory address, or something else? What does the %0 mean?
3
votes
1answer
2k views
What is the 'asmlinkage' modifier meant for?
I have read that it is used for functions that implement system calls in Linux.
For example:
asmlinkage long sys_getjiffies( void )
{
return (long)get_jiffies_64();
}
and that it tells the ...
3
votes
3answers
1k views
How do I read the value of all registers with gdb?
I am debugging a c program in assembly to understand how the gcc complier works. I want to read my $fs segment register so I use x/x $fs, however it tells me it can't access the memory. How can I get ...
0
votes
1answer
256 views
Strange behavior when reading the contents of a register into a C variable
I am trying to read the contents of a register, specifically gdtr into a C variable using gcc inline assembly. I am adapting some code I found here in order to do so, but the code is written for a ...
0
votes
1answer
305 views
Rewriting EBP stack return value
Hi I'm trying to write an overflow exploit for a simple program that I've built. Bellow is the C program that I've written.
#include <unistd.h>
#include <string.h>
#include ...
0
votes
1answer
265 views
Segmentation fault assembly i386:x86_64
I'm working on i386:x86_64 and I'm writing a simple program to start a shell. Bellow is my assembly.
.section .data
.section .text
.globl _start
_start:
xor %rax, %rax
mov $70, %al
xor ...
3
votes
1answer
205 views
Which registers are protected from user space in linux?
How can I find out which registers are protected by the linux kernel to keep user assembly from writing to them?
0
votes
1answer
96 views
Seg fault for writting to CR0
I'm trying to write to CR0 in linux, but I keep getting a seg fault. This for assembly of i386:x86_64. Is there anyway of getting around this?
Bellow is part of the code that sets the seg fault.
mov ...
1
vote
2answers
222 views
How does linux protect memory?
I'm interested in how linux runs in protected mode from an assembly point of view. Which registers and interrupts are used when it comes to putting the cpu in protected mode for an i386:0x86_64 ...
7
votes
2answers
2k views
Where can I find system call source code?
In linux where can I find the source code for all system calls given that I have the source tree? Also if I were to want to look up the source code and assembly for a particular system call is there ...
1
vote
2answers
125 views
Can protection mode be turned off with inline assembly?
If a user didn't have root privileges, could that user still write a user space program with inline assembly to turn off protection mode on the computer to overwrite memory in other segments assuming ...
1
vote
3answers
320 views
How does device mmap work in contrast to I/O address ports?
I was wondering if Linux sees a difference between mmap to a peripheral devices memory in comparision to reading/writing to the device via I/O Ports. From what I've learned in my Assembly class, we ...
3
votes
1answer
380 views
How to write a C function invoked from assembly code
I need to write a C function that will be invoked from assembly code in linux kernel.
What special issues should be taken into account?
I have some in mind, but can anybody provide more details:
...
4
votes
3answers
1k views
Is “asmlinkage” required for a c function to be called from assembly?
I am writing a C function that will be invoked from assembly code.
(Specifically, I want to do some checking job in the path of system call handling in linux kernel, so I will call the c function ...
1
vote
2answers
241 views
ARM instruction counting?
I want to perform performance measurement of a change I want to make to an application by counting instructions. However, I'm not familiar enough with ARM's debug interface to know how to do this. Is ...





