The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
62 views

how can I jump to the higher half kernel

I am currently building a higher half kernel, my bootloader loads the kernel at physical address 0x100000(1M) and identity mapping has been set for 0-4MB. Here is the question: how can I jump to the ...
13
votes
4answers
245 views

Which is the address printed by printf() with a %p format in c?

I'm having simple code as follows: #include<stdio.h> int glob; int main(void) { int a; printf("&a is : %p \n", &a); printf("glob is : %p \n", &glob); return 0; } ...
0
votes
0answers
44 views

Word size in bits to bytes conversion confusion

I have a pretty elementary question which is somewhat confusing me. It will be great to get some refresher on this. Every computer has a word size. The word size is the maximum size of the virtual ...
0
votes
1answer
34 views

How can virtual address space be paged?

While I was reading this Wikipedia article, http://en.wikipedia.org/wiki/Memory_management_unit#How_it_works, I came across that divide virtual address space (range of address used by processor) into ...
1
vote
1answer
68 views

Accessing the vm areas of a process

I am trying to write a LKM that have to read the vm areas address from a process. I am using pid_task() to get the pointer to the task_struct, but i getting compiling error when i try to use it to get ...
0
votes
2answers
54 views

What are the cases when a program has the same virtual address space

If you ran a program foo.c in two different terminals, and printed the address of the local variable being executed. They would be same. However, in context of forking and executing say for example ...
0
votes
0answers
95 views

In 64 bit windows is providing a base address to VirtualAlloc or MapViewOfFileEx a bad thing?

I have often heard that choosing a base address for VirtualAlloc or MapViewOfFileEx is not recommended. MapViewOfFileEx says: While it is possible to specify an address that is safe now (not ...
0
votes
1answer
70 views

Process region table & Global Descriptor able & virtual address

I am going through linux notes from one of the training institute here. As per that when ever a process is created a region is allocated to it. Region contains all the segments for the process. Also ...
3
votes
1answer
76 views

POWER8 architecture 'flat' virtual address space

As mentioned here, can anyone explain what is meant by a 'flat' 32 bit space? Text for the lazy: Another interesting feature of the architecture is a virtual address system which maps all ...
1
vote
1answer
64 views

Change the process virtual address space of a child process

I would like to know if it is poosible to change the virtual address space of a child process in Unix like operating system. I want to have the ability to (a) Load/unload shared libraries (b) Write ...
2
votes
1answer
109 views

Is it possible to safely assume that the 16 high bits (2 are sufficient for me) in a 64-bit pointer are unset?

I'm building a data structure which sets into 64 bit integers a set bit every 2 or 3 bits. It would be convenient for me if I could alternately also store a pointer in this structure (when they are ...
1
vote
1answer
84 views

Get pointer to memory for which I have the virtual address in a long type value

I have allocated a memory using a function call, which returned the 64bit Physical Address. I have mapped that address using a function call, which returned the 64bit Virtual Address. Now, I need a ...
0
votes
1answer
154 views

Manual Virtual Address Translation

I've looked at a few different articles related to this already but none of them explain the solution in a way that I can understand and replicate. I need to know how to translate a physical address ...
-1
votes
1answer
275 views

virtual memory concepts

I am confused about some topics regarding virtual memory. So, i am going to pointwise list them and ask questions. While answering i will prefer if you also list some source where i can clear that ...
2
votes
5answers
236 views

How does Windows give 4GB address space each to multiple processes when the total memory it can access is also limited to 4GB

How does Windows give 4GB address space each to multiple processes when the total memory it can access is also limited to 4GB. The solution of above question i found in Windows Memory ...
1
vote
1answer
421 views

is number of frame = number of pages(linux)?

I am studying linux device driver and found that number of pages are equal to number of frame. Each page map to each frame.It says like whenever program needs memory it will allocate pages. But in OS ...
0
votes
1answer
138 views

linux kernel function _copy_to_user, want clear understanding of that

I am using this function to copy some structures to the kernel. But, the problem is that I have to copy three data structures which are part of a bigger data structure. NOTE: the 3 data structures ...
0
votes
0answers
32 views

logical addressing

When we say that logical addresses are translated to physical addresses at run time,when exactly were these logical addressed calculated?Are the logical addresses written inside the text segment along ...
0
votes
0answers
66 views

Mapping a page with a specific address

I'm trying to map a virtual memory page using VirtualAlloc, but it's an specific address outside 8TB Windows 7 64 bits allowed range, i've read at Windows Internals book this address range is used ...
0
votes
0answers
160 views

Virtual memory size and allocation

On 32-bit x86 systems, the total virtual address space has a theoretical maximum of 4 GB. By default, Windows allocates half this address space (the lower half of the 4-GB virtual ...
3
votes
1answer
1k views

Disable and re-enable address space layout randomization only for mysef

I would like to disable address space layout randomization (ASLR) on my system (Ubuntu Gnu/Linux 2.6.32-41-server), but, if I use sysctl -w kernel.randomize_va_space=0 the change would affect all ...
0
votes
3answers
152 views

Is it possible to run each thread in a separate virtual address space?

On Linux, is it possible to have threads of a process running on different virtual address spaces? If so, how?
1
vote
1answer
177 views

Address-Override Prefix in 64-bit mode

In 64-bit mode, the default address size is 64 bits. If the address-size override prefix (67h) is present, the address size is 32-bits. I'm aware of the fact that canonical 64-bit addresses have ...
2
votes
1answer
425 views

GDB examine memory permissions

I've an address in memory and I want to find out the permissions (r/w/x) of that memory address. E.g. char *s = "hello"; Here, the string literal "hello" is stored in read-only memory. When ...
1
vote
2answers
391 views

Non-canonical linear addresses and general protection exception

The Intel Manuals say the following about canonical addresses and general protection exception: From (Vol 1, Pg. 3-13): "If a linear-memory reference is not in canonical form, the implementation ...
0
votes
2answers
82 views

Sandboxing thread

I want to create thread or process that would have its own virtual address space (It would probably would have to be separate process) without system libraries in the address space. My goal is to ...
0
votes
1answer
332 views

Finding Maximum Page Table Size

I have this problem for homework that I am having a hard time finding an answer for. Was wondering if anyone here could tell me if I am on the right track on my calculations or if I am way off. I am ...
0
votes
1answer
110 views

Reasonable valid start address for mmap address hint so as to be gauranteed that things work

In one of our assignments we are required to build a distributed shared memory between 2 machines, I was using a paging based technique such that the base addresses are different on both the machines. ...
0
votes
1answer
365 views

Mapping of Page allocated to user process in Kernel virtual address space

When a page is created for a process (which will be mapped into process address space), will that page be mapped into kernel address space ? If not, then it won't have kernel virtual address. Then ...
1
vote
0answers
196 views

Cannot write to virtual address using iowrite()

I am trying create a hardware driver module in linux kernel. The hardware is connecting to the CPU through UART, therefore I am trying to access the UART register directly through iowrite(). However I ...
2
votes
2answers
170 views

Need for relocations in an exe

Why is there a need for relocation table when every element in an exe is at a relative offset from the base of the image?? I mean even if the image gets dispacled by a positive offset of say 0X60000, ...
0
votes
1answer
62 views

No Access Region (0x0 through 0xFFFF) within User Virtual Address Space

I was reading a book on Windows Internals and on a Chapter for Virtual Memory it mentioned that the first 64KB Address range is reserved as a No-Access region and the reason mentioned was to avoid ...
5
votes
1answer
1k views

Understanding virtual address and virtual address space

I read that , "When a program executes an instruction like : MOV REG,1000 , it does so to copy the contents of the memory address 1000 to REG. Address can be generated using indexing,base ...
5
votes
2answers
2k views

how to check if exe is set as LARGEADDRESSAWARE

I am developing a C# program that will load files and get information such as loaded file created date, modification date, size etc. Another thing that I need to know is whether the loaded file ...
1
vote
1answer
179 views

How does copy_to_user work on s390?

On the s390 architecture virtual kernel and user address spaces are never present at the same time, so how does copy_to_user work?
1
vote
3answers
278 views

Is the memory allocated by malloc not necessarily physically continous?

the memory allocated by malloc could occupy several pages and these pages are not necessarily next to each other, is this correct?
0
votes
2answers
265 views

MPI + Function Pointers?

If I'm running the same binary (which implies the same architecture) on multiple nodes of a Beowulf cluster in an MPI configuration, is it safe to pass function pointers via MPI as a way of telling ...
0
votes
2answers
63 views

[windows]: something about the mapping between elf and vas

I read something from wiki about Virtual Address Space (VAS). One thing I don't understand, I'm not sure whether I understand it correctly. Here is it: the application's EXE file is mapped into ...
1
vote
2answers
822 views

virtual addressing v.s. physical addressing

I do not quite understand the benefit of "multiple independent virtual address, which point to the same physical address", even though I read many books and posts, E.g.,in a similar question ...
-1
votes
1answer
323 views

virtual address space in a variable partition scheme

I know this question is more on OS than on programming,sorry for that. In a multiprogrammig scheme with variable partitions who has to decide the size of a process virtual address space?? what if ...
0
votes
2answers
157 views

How 4gb(VM) Address space used while swithcing from/to user space to kernel space

I looked at a lot if online thread/tutorials regarding how process address space is divided into process/kernel Ex: i have some Helloworld program in that i have call as printf(in turn it makes write ...
1
vote
2answers
174 views

Does the last GB in the address space of a linux process map to the same physical memory?

I read that the first 3 GBs are reserved for the process and the last GB is for the Kernel. I also read that the kernel is loaded starting from the 2nd MB of the physical address space (depending on ...
3
votes
3answers
2k views

Is there any API for determining the physical address from virtual address in Linux

Is there any API for determining the physical address from virtual address in Linux operating system ? Please clarify me.
3
votes
2answers
6k views

Multi-level page tables - hierarchical paging

Example question from a past operating system final, how do I calculate this kind of question? A computer has a 64-bit virtual address space and 2048-byte pages. A page table entry takes 4 bytes. A ...
1
vote
1answer
507 views

File Systems - Memory-Mapped Files

An example final question for my operating systems class: Most operating systems support "memory-mapped files"; this describes files which are mapped into the address space of a running process. ...
1
vote
1answer
1k views

In a linux sk_buff, is skb->data a physical or virtual address?

I'm investigating some memory corruption issues in an ethernet driver for an embedded system. I suspect a problem between a bus mastering DMA controller and slow SDRAM. So I want to use a bounce ...
1
vote
3answers
128 views

How can virtual address space mapping be acceptable from a performance point of view?

This question is aimed at any OS using a VAS model, but I'm going to specify windows nt, since that's the system I know best. As we all know, by default, processes on 32 bit windows get 2 GB of ...
5
votes
5answers
2k views

How are same virtual address for different processes mapped to different physical addresses

I have taken a course about Operating System design and concept and now I am trying to study Linux kernel thoroughly. I have a question that I cannot get rid of. In modern operating systems each ...
2
votes
2answers
679 views

Pure segmentation

I'm a bit confused about pure segmentation due to in my head always existed the idea of virtual memory. But as I understand pure segmentation is also imagining a virtual address space, divided in ...
1
vote
0answers
64 views

How does memory protection in SASOS works?

I'd like to know how it works - whether it checks if process can read/write/execute memory on every access, or it does it only once? But when it does it only once, and all processes are in a single ...

1 2