Relocation is the adaptation of a piece of code assembled on a certain address in memory to another address It is a typical task of dynamic linkers and program loaders, and thus last step in a standard development toolchain.
-4
votes
0answers
13 views
How does operating system deal with relocation? [closed]
While reading Tannenbaum,for Operating Systems,I couldn't actually get the feel for this concept:
Operating system role to handle relocation
Could anyone of you suggest alternative resources,in a ...
0
votes
1answer
33 views
SVN update not working after SVN relocate
I have recently migrated my SVN repository from SERVER1 to SERVER2.
installed SVN on SERVER2.
used svnrdump utility to dump the repository.
used svndump load utility to load the dump file to new ...
2
votes
0answers
34 views
ELF Relocation reverse engineering
I am hoping you guys could help me understand how relocation entries and ELF section data are related, and how it is all processed and generated.
I have an ancient unsupported tool that takes an ...
1
vote
0answers
20 views
Using GNU ld, how can I force the address of a specific (external) symbol without getting a “relocation truncated” error?
I have two functions, a() and b(), that both have specific, fixed load/run-time addresses. I am compiling a() myself, while b() is already provided (e.g. in ROM).
The file a.c is as follows:
extern ...
4
votes
2answers
78 views
Concept of relocation
I'm new to assembly and hence want to understand more about the concept of relocation.
Why exactly do we need to relocate programs, data?
How exactly is it done?
I have looked up on the net but ...
0
votes
3answers
134 views
How to get address of printf function in arm executable
I have assingment to make loader for ARM elf relocatible files. I have managed to parse elf somehow, and managed to make some simple relocations, but i have to do the following and i have trouble. I ...
0
votes
0answers
17 views
.text linking error with gcc
I am getting Linking error while compiling my project with gcc 4.6.3:
".text.vMkDesComputeRoundKeys.5707+0x8): relocation truncated to fit: 16 bit abs against `.LC0'".
What does it mean and how I ...
0
votes
0answers
70 views
PL/SQL Function and Procedure for relocation
i need help with an task that i got from someone here in the firma.
The task is:
I have to make 2 Tables
One for relocation(move).
One for the Addresses.
There shouldn't be duplications.
I have to ...
2
votes
2answers
229 views
How to get GCC to export ALL symbols to the output file
I am developing an operating system, and I need to load some modules BEFORE paging is set up. So since paging is not set up at this point I need to relocate all of the symbols in the program to there ...
1
vote
0answers
193 views
PIC compilation - error: relocation R_X86_64_32S against `vtable for hit' can not be used when making a shared object; recompile with -fPIC
I'm newbie with Linux and I'm having trouble with compiling a make file which works well in a 32-bit machine. I didn't write this program but I need it to work to use its functionalities. My machine ...
0
votes
1answer
225 views
Running Ubuntu 12.04 compiled C++ Programs on a CentOS5 Box
I have a bunch of software developed on Linux in C++ using g++. The code compiles and runs on both Ubuntu 12.04 and CentOS 5. We have a few older servers still running CentOS 5. Currently I compile ...
0
votes
1answer
134 views
fPIC code in a static library: Why? What happens?
What happens when Position Independent Code is placed in a static library? (In particular, on x86-64)
That is to say: Several .o files are generated with PIC and placed in a .a file. This .a is ...
0
votes
1answer
30 views
Similar option “-BSymbolic” for armlink
To reduce the relocation, "-BSymbolic" can be used in gcc toolchain. But how about for the armlink ? is there similar option ?
0
votes
1answer
137 views
Why new&delete operator symbols in shared-obj is to be relocated even if they are implemented in that shared-obj?
I am try to implement my own c++ new & delete operators in my program as bellow:
#include <stdio.h>
#include <stdlib.h>
#include <new>
using namespace std;
void *operator ...
6
votes
1answer
289 views
Relocation Error when Inserting External Cross-Compiled SPARC Linux Module
First off: I am not an expert, so please excuse any mistakes I make trying to explain myself.
I am trying to cross-compile an external Linux module for a SPARC machine using Sparc-Linux-GCC-4.4.2. ...
1
vote
2answers
2k views
Wordpress keeps redirecting to install-php after migration
Here's my situation.
I have followed the exact instructions on wordpress codex page about moving a site to another server.
Here are the step's i have taken.
Export a copy of my database
Make a new ...
1
vote
2answers
73 views
What is the goal to contains the information about static variables in the symbols table?
I'm trying to understand .symtab setcion type for the relocatable object files. And I know, that it contains information about static variables. But why?
All we need to do for linking relocatable ...
1
vote
1answer
207 views
How to distinguish between relocatable and non relocatable symbols inside .data.rel section
I'm trying to create a simple linker for a barebone ARM application. Currently the loader, that loads the module, will simply add the offset to all records inside the .got and .data.rel sections. This ...
0
votes
1answer
549 views
Questions about u-boot relocation feature
I am using the u-boot-2011.12 on my OMAP3 target, the cross tool chain is CodeSourcery arm-none-linux-gnueabi, I compiled u-boot, downloaded it onto the target and booted it, everything went fine,but ...
0
votes
1answer
581 views
Snoop on Solaris 10 package - relocation error
I'm trying to run snoop on a Solaris 10 box.
Snoop was not installed by default and I grabbed it from the Solaris 10 cd.
The package I installed was SUNWrcmdc as a man snoop shows it relies on this ...
0
votes
0answers
60 views
Thepgcgroup recruitment company [closed]
Recently I have been contacted on LinkedIn by a company called thepgcgroup.com..
They supposedly help clients from Australia relocate to the US.
I'm just wondering if anyone has any experience with ...
1
vote
1answer
453 views
What's the difference between R_386_PC32 and R_X86_64_PC32 in link(GNU ld) relocation process
When reading the book Computer System: A Programmer's Perspective Section 7.7.1 Relocation Entries: the brief content of this section is how a linker relocate reference in a different object file.
...
2
votes
2answers
543 views
C++ How to control Image Base of LoadLibrary API
After Rebasing the main program very high up in it's own imagebase.
How do I guarantee that the dll that gets loaded will load in 0x400000
dllImageBase = LoadLibrary("test.dll");
printf("imagebase = ...
4
votes
1answer
311 views
with RIP-addressing, why x86-64 still need relocations?
So x86-64 has the RIP-relative addressings which makes PIC codes easy to write and relocations needed much less. Why is relocations still needed then on x86-64? For what features? I can try to explore ...
3
votes
2answers
448 views
relocation entries in a shared lib
I'm investigating relocation of shared libraries, and ran into something strange. Consider this code:
int myglob;
int ml_util_func(int p)
{
return p + 2;
}
int ml_func2(int a, int b)
{
int ...
1
vote
1answer
241 views
Avoiding linking against static libraries when using libtool
I am trying to cross compile ImageMagick on a linux machine. The libstdc++.a that comes with the toolchain is not compiled with fPIC. I would like to use the so file instead. However libtool keeps ...
2
votes
2answers
887 views
Why does the -r option (relocatable) make ld not find any libraries?
Running Debian/Linux x86_64 with GNU ld 2.21.
Quite simply, if I link with
ld -o main main.o /usr/lib/crti.o /usr/lib/crt1.o /usr/lib/crtn.o -lc -lm
It works, but when I link with
ld -r -o ...
4
votes
2answers
1k views
What does R_X86_64_32S relocation mean?
Got the following error when i tried to compile a C application in 64-bit FreeBSD.
*relocation R_X86_64_32S can not be used when making a shared object; recompile with -fPIC*
What is R_X86_64_32S ...
2
votes
1answer
1k views
Relocation truncated to fit error when compiling using g++
I am trying to compile a piece of cpp code under linux, and got the following error:
/tmp/ccIeh7Ta.o: In function `model::MulPLSA::EStep()':
mul_plsa.cpp:(.text+0xb12): relocation truncated to fit: ...
0
votes
1answer
297 views
So most of the binary is composed of reloc table?
I just used objdump -x ... to check the sections of a PE file.
There's about 90,000 lines of reloc entries:
reloc 92 offset bc0 [524bc0] HIGHLOW
reloc 93 offset bc4 [524bc4] HIGHLOW
....
...
1
vote
1answer
467 views
relocation error & Linux sw distributing
This is my goal: I developed software in Linux and I need to distribute it without source code. The idea is to create a zip file that contains all the necessary items to run the executable. The user ...
4
votes
1answer
550 views
How to write dynamic loader for bare-metal arm-application
I'm working on a project based on arm9 processor. We use only bare-metal without any operating system, so unfortunately we have no support for shared libraries / dynamic loader yet.
I would like to ...
2
votes
1answer
1k views
Problems with static local variables with relocatable code
I am building a project which has relocatable code on bare metal. It is a Cortex M3 embedded application. I do not have a dynamic linker and have implemented all the relocations in my startup code. ...
0
votes
1answer
2k views
Subversion SVN: Repository has been moved Repository moved permanently to XXX please relocate
I dont understand SVN right now. When I change a file and try to update, it gives me the following error:
Repository has been moved
Repository moved permanently to 'http://myIpAdress/svn/'; please ...
1
vote
1answer
217 views
what's the ELF object file size limitation on 64bit platform?
Assume the x86 64 and linux platform.
If you look into the ELF header, the offset are all 64bit.
So it's easy to create an object file larger than 4G with relocatoin R_X86_64_64. This means a static ...
2
votes
3answers
620 views
What is meant by statically relocated or static relocation of a segment
The elf format executable contains various segments like code, data, bss, stack etc.
If we say that the segment xyz is statically relocated what does that mean?
The elf format binary contains ...
1
vote
2answers
1k views
How to apply DOP and keep a nice user interface?
Currently I want to optimize my 3d engine for consoles a bit. More precisely I want to be more cache friendly and align my structures more data oriented, but also want to keep my nice user interface.
...
1
vote
2answers
421 views
How is it that main function is always loaded at the same address whereas variables have different address most of the time?
Hey guys! I wrote this small program today and I was blown away by the results. Here is the program
int main(int argc, char **argv)
{
int a;
printf("\n\tMain is located at: %p and the variable a ...
2
votes
2answers
527 views
Howto extend SomeActivity to relocate e.g. onCreateOptionsMenu?
I know this should be fairly simple but I don't get it anyhow.
I've got an Activity (let's call it XyActivity) which has gotten pretty long. Therefore, I'd like to relocate some overriden methods to a ...
0
votes
2answers
795 views
Relocation Truncated to Fit error in NASM x86_64
I'm using a computer with an Intel Core 2 CPU and 2GB of RAM. The SO is Ubuntu 9.04.
When I try to compile this code:
;programma per la simulazione di un terminale su PC, ottenuto utilizzando l'8250
...
6
votes
8answers
560 views
Why is a function executed from the same memory address each time?
I'm disassembling an executable:
(gdb) disas main
Dump of assembler code for function main:
0x004012d0 <main+0>: push %ebp
0x004012d1 <main+1>: mov %esp,%ebp
...
Each time ...
1
vote
1answer
110 views
ELF and processor specific aspects of dynamic linking
I am trying to understand the process of dynamic linking, in detail.
For the purpose, I tried digging into .got section of ELF.
q.1 : I read in ELF Standard 1.2(Appendix) that Global offset table's ...
3
votes
1answer
63 views
Migrating a website to a new domain, and associated google index problem
We currently have a website at "somedomain.net/codefest". We do not own this server (or this domain name).
Due to capacity problems, we are now moving to a new server. Since we do not own the old ...
7
votes
3answers
1k views
Dynamic relocation of code section
Just out of curiosity I wonder if it is possible to relocate a piece of code during
the execution of a program. For instance, I have a function and this function should
be replaced in memory each time ...
17
votes
3answers
12k views
SVN Switch Relocate - is not the root of the repository
I'm trying to move a working copy folder from it's old dedicated svn server, to a new svn server where it is contained within a sub-folder. Using the following relocate command:
svn switch --relocate ...
2
votes
4answers
312 views
What is ActivePerl doing when it “relocates” files during installation?
Given some unix program which I've compiled, what might I need to do to relocate it to a different directory and have it continue running correctly.
I'm thinking of Perl, but would be interested in ...
2
votes
2answers
317 views
How prevent from dynamic relocation (rela.dyn)?
I am trying to run a simple program on an powerpc embedded system without any operating system. I am using GNU compiler-linker tools and PSIM as simulator. I've written my own very simple Linker ...
0
votes
2answers
141 views
relocation task
Is there any difference between the address space relocation and the relocation task done by the linker??As far as I know ,relocation task done by the linker includes process of connecting the ...
2
votes
2answers
616 views
Is there a way to change the preferred base address of a dll once it's compiled?
I'd like to modify the base address of a few compiled dlls I'm using to move them out of the middle of the virtual space and help with big allocations. Anybody knows of a tool to do that? If it's ...
13
votes
4answers
7k views
How to modify repository settings in Redmine?
It might sound like a dumb question but I can't for the life of me find the answer to this one.
We have a project set up in Redmine, linked to a SVN repository. Everything is working fine, but we ...
