Creating a 64-bit Kernel Tutorial

All about the OSDev Wiki. Discussions about the organization and general structure of articles and how to use the wiki. Request changes here if you don't know how to use the wiki.
User avatar
Zenith
Member
Member
Posts: 224
Joined: Tue Apr 10, 2007 4:42 pm

Creating a 64-bit Kernel Tutorial

Post by Zenith »

I just finished a rough draft of a tutorial on how to compile and link a 64-bit kernel. It covers compilation, linking (as a higher-half elf64), and three different ways of loading the kernel (including how to include a 32-bit bootstrap into an elf64 executable).

Hope this reduces the number of people who have trouble with x86-64 kernels, like relocation issues and loading. :)

The article is here.

Thoughts/improvements?
"Sufficiently advanced stupidity is indistinguishable from malice."
zerosum
Member
Member
Posts: 63
Joined: Wed Apr 09, 2008 6:57 pm

Post by zerosum »

Looks good to me at a glance :-)

As you know, I had many issues while trying to do this, and you've covered them, which is fantastic. If only you'd written it earlier, it would have saved me a lot of time ;-)

I might have to go back and add to my 32-bit kernel stub, so that it can read the GRUB2 multiboot information tags, because at the moment I've got no support for that... just for the old structure.

Cheers,
Lee
slide_rule
Posts: 16
Joined: Sat Nov 24, 2007 6:41 pm
Location: loglogdecalog

Post by slide_rule »

Sorry to ressurect the thread, but I ran across this thread that describes how opensolaris loads a 64-bit elf into grub. If I'm understanding correctly, they set bit 16 in the multiboot flags, which forces grub to look at the header address fields specified in the multiboot header rather than parse out the elf. So they set all the address info at link time and then give grub physical start/end and entry addresses themselves.

Thoughts? Perhaps something to add to the wiki? (I haven't been approved for editing yet, otherwise I'd love to help.)[/url]

I'm going to try and test this when I get home from work this afternoon.
xyzzy
Member
Member
Posts: 391
Joined: Wed Jul 25, 2007 8:45 am
Libera.chat IRC: aejsmith
Location: London, UK
Contact:

Post by xyzzy »

This is what I do on my 64-bit port, works nicely. Doesn't require any special patches to GRUB so it's easy to implement. I have the following in my multiboot header:

Code: Select all

multiboot_header:
	.long MB_KERNEL_MAGIC
	.long (MB_HFLAG_MODALIGN|MB_HFLAG_MEMINFO|MB_HFLAG_KLUDGE)
	.long -(MB_KERNEL_MAGIC + (MB_HFLAG_MODALIGN|MB_HFLAG_MEMINFO|MB_HFLAG_KLUDGE))
	.long KA2P(multiboot_header)
	.long KA2P(__text_start)
	.long KA2P(__data_end)
	.long KA2P(__end)
	.long KA2P(_start)
The KA2P macro just converts a virtual address to a physical address, and the MB_HFLAG defines are as follows:

Code: Select all

/* Flags for the multiboot header */
#define MB_HFLAG_MODALIGN	(1<<0)		/* Align loaded modules on page boundaries */
#define MB_HFLAG_MEMINFO	(1<<1)		/* Memory map */
#define MB_HFLAG_KLUDGE		(1<<16)		/* Use a.out kludge */
slide_rule
Posts: 16
Joined: Sat Nov 24, 2007 6:41 pm
Location: loglogdecalog

Post by slide_rule »

Cool, works for me as well. Interestingly enough, NASM & ld balked when I tried to extern the _start _edata and _end symbols (relocation truncated error), but gas has no problems. Looks like I'm switching assemblers.

Could those with edit permissions add this to the wiki entry?
User avatar
Brynet-Inc
Member
Member
Posts: 2426
Joined: Tue Oct 17, 2006 9:29 pm
Libera.chat IRC: brynet
Location: Canada
Contact:

Post by Brynet-Inc »

slide_rule wrote:Could those with edit permissions add this to the wiki entry?
I do believe you can do so yourself, http://www.osdev.org/phpBB2/groupcp.php
Image
Twitter: @canadianbryan. Award by smcerm, I stole it. Original was larger.
slide_rule
Posts: 16
Joined: Sat Nov 24, 2007 6:41 pm
Location: loglogdecalog

Post by slide_rule »

I'd love to, but...
slide_rule wrote:Perhaps something to add to the wiki? (I haven't been approved for editing yet, otherwise I'd love to help.)
...my membership is still pending.
frank
Member
Member
Posts: 729
Joined: Sat Dec 30, 2006 2:31 pm
Location: East Coast, USA

Post by frank »

Have you tried just logging in yet? I was told at one point in time that as soon as you apply for permission you are given it.
slide_rule
Posts: 16
Joined: Sat Nov 24, 2007 6:41 pm
Location: loglogdecalog

Post by slide_rule »

Just tried: claims my user name is invalid, so I assume no go just yet. No worries.
gurugio
Posts: 1
Joined: Fri Nov 21, 2008 3:45 am

Re: Creating a 64-bit Kernel Tutorial

Post by gurugio »

Hi, I build x86_64-pc-elf-gcc and x86_64-pc-linux-ld successfully.
And I use the same link script with your document.

But I set the KERNEL_VMA as 0xFFFF800000000000 (same with linux kernel),
then I meet this error.


x86_64-pc-elf-gcc -Wall -Winline -I./include -fno-stack-protector -O2 -nostdinc -nostdlib -m64 -ffreestanding -nostdlib -mcmodel=large -c printf.c
x86_64-pc-linux-ld -nodefaultlibs -nostdlib -Map link_map.txt --defsym KERNEL_VMA=0xFFFF800000000000 -o main.tmp -T ld-script.ld head.o main.o screen.o io.o printf.o string.o
head.o: In function `_start':
head.asm:(.text+0xd): relocation truncated to fit: R_X86_64_32 against `.text


Could you guess my fault? Gcc Option or ld optioin?
User avatar
01000101
Member
Member
Posts: 1598
Joined: Fri Jun 22, 2007 12:47 pm
Location: New Hampshire, USA
Contact:

Re: Creating a 64-bit Kernel Tutorial

Post by 01000101 »

could you post your link.ld and batch/makefile?
User avatar
Love4Boobies
Member
Member
Posts: 2111
Joined: Fri Mar 07, 2008 5:36 pm
Location: Bucharest, Romania

Re: Creating a 64-bit Kernel Tutorial

Post by Love4Boobies »

wiki wrote:Enter Protected Mode (or skip this step and enter long mode directly)
I don't think that that should point on the forum. Perhaps the forum thread should be in the See also section or smth like that and your link should point here.
"Computers in the future may weigh no more than 1.5 tons.", Popular Mechanics (1949)
[ Project UDI ]
vinaychandra
Posts: 2
Joined: Sun Jan 08, 2017 10:56 am

Re: Creating a 64-bit Kernel Tutorial

Post by vinaychandra »

Could you please provide the links for the code of elf.c and elf.h used in the option of using a separate loader for creating the 64 bit kernel?
User avatar
max
Member
Member
Posts: 616
Joined: Mon Mar 05, 2012 11:23 am
Libera.chat IRC: maxdev
Location: Germany
Contact:

Re: Creating a 64-bit Kernel Tutorial

Post by max »

vinaychandra wrote:Could you please provide the links for the code of elf.c and elf.h used in the option of using a separate loader for creating the 64 bit kernel?
This thread is 9 years old..
vinaychandra
Posts: 2
Joined: Sun Jan 08, 2017 10:56 am

Re: Creating a 64-bit Kernel Tutorial

Post by vinaychandra »

Yes, but this is the link to it i can find and also, the latest modification is a month ago
Post Reply