aboutsummaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorMarvin Borner2020-11-05 17:30:39 +0100
committerMarvin Borner2020-11-05 17:32:53 +0100
commit63e86f792167e6cc2e9600d00b184a3c83fe7498 (patch)
tree31e2d583be3ebf34782f6ec37f6c524657c40686 /kernel
parent916fca2161e76de67a5106b90baf00a57f2a0512 (diff)
Added warning flags and fixed them :)
Diffstat (limited to 'kernel')
-rw-r--r--kernel/Makefile7
-rw-r--r--kernel/drivers/acpi.c16
-rw-r--r--kernel/drivers/fpu.c4
-rw-r--r--kernel/drivers/ide.c8
-rw-r--r--kernel/drivers/interrupts.c6
-rw-r--r--kernel/drivers/keyboard.c10
-rw-r--r--kernel/drivers/mouse.c10
-rw-r--r--kernel/drivers/pci.c4
-rw-r--r--kernel/drivers/rtl8139.c47
-rw-r--r--kernel/drivers/timer.c8
-rw-r--r--kernel/features/fs.c35
-rw-r--r--kernel/features/net.c103
-rw-r--r--kernel/features/proc.c31
-rw-r--r--kernel/features/syscall.c10
-rw-r--r--kernel/inc/acpi.h6
-rw-r--r--kernel/inc/fpu.h2
-rw-r--r--kernel/inc/fs.h6
-rw-r--r--kernel/inc/interrupts.h2
-rw-r--r--kernel/inc/keyboard.h2
-rw-r--r--kernel/inc/mouse.h2
-rw-r--r--kernel/inc/net.h2
-rw-r--r--kernel/inc/pci.h13
-rw-r--r--kernel/inc/proc.h12
-rw-r--r--kernel/inc/rtl8139.h4
-rw-r--r--kernel/inc/syscall.h2
-rw-r--r--kernel/inc/test.h24
-rw-r--r--kernel/inc/timer.h6
27 files changed, 179 insertions, 203 deletions
diff --git a/kernel/Makefile b/kernel/Makefile
index c449cd9..cca186c 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -23,7 +23,8 @@ LD = ccache ../cross/opt/bin/i686-elf-ld
OC = ccache ../cross/opt/bin/i686-elf-objcopy
AS = ccache nasm
-CFLAGS = -Wall -Wextra -Wno-address-of-packed-member -nostdlib -nostdinc -ffreestanding -fno-builtin -mno-red-zone -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Wl,-ekernel_main -I../libc/inc/ -Iinc/ -Dkernel $(CFLAGS_EXTRA) $(OPTIMIZATION)
+WARNINGS = -Wall -Wextra -pedantic-errors -Wshadow -Wpointer-arith -Wwrite-strings -Wredundant-decls -Wnested-externs -Wno-long-long
+CFLAGS = $(WARNINGS) -Wno-address-of-packed-member -nostdlib -nostdinc -ffreestanding -fno-builtin -mno-red-zone -mgeneral-regs-only -std=c99 -m32 -Wl,-ekernel_main -I../libc/inc/ -Iinc/ -Dkernel $(CFLAGS_EXTRA) $(OPTIMIZATION)
ASFLAGS = -f elf32
all: compile
@@ -36,5 +37,5 @@ all: compile
compile: $(COBJS)
@mkdir -p ../build/
- @$(LD) -N -ekernel_main -Ttext 0x00050000 -o ../build/kernel.bin -L../build/ $+ -lk --oformat binary
- @$(CC) $(CFLAGS) -o ../build/debug.o -L../build/ $+ -lk
+ @$(LD) -N -ekernel_main -Ttext 0x00050000 -o ../build/kernel.elf -L../build/ $+ -lk
+ @$(OC) -O binary ../build/kernel.elf ../build/kernel.bin
diff --git a/kernel/drivers/acpi.c b/kernel/drivers/acpi.c
index 0db4522..5ab0ac6 100644
--- a/kernel/drivers/acpi.c
+++ b/kernel/drivers/acpi.c
@@ -12,7 +12,7 @@ int check_sdt(struct sdt_header *header)
u8 sum = 0;
for (u32 i = 0; i < header->length; i++)
- sum += ((char *)header)[i];
+ sum += (u8)(((u8 *)header)[i]);
return sum == 0;
}
@@ -22,12 +22,12 @@ int check_sdp(struct sdp_header *header)
u8 sum = 0;
for (u32 i = 0; i < sizeof(struct rsdp); i++)
- sum += ((char *)header)[i];
+ sum += (u8)(((u8 *)header)[i]);
return sum == 0;
}
-struct rsdp *find_rsdp()
+struct rsdp *find_rsdp(void)
{
// Main BIOS area
for (int i = 0xe0000; i < 0xfffff; i++) {
@@ -47,9 +47,9 @@ struct rsdp *find_rsdp()
void *find_sdt(struct rsdt *rsdt, const char *signature)
{
- int entries = (rsdt->header.length - sizeof(rsdt->header)) / 4;
+ u32 entries = (rsdt->header.length - sizeof(rsdt->header)) / 4;
- for (int i = 0; i < entries; i++) {
+ for (u32 i = 0; i < entries; i++) {
struct sdt_header *header = (struct sdt_header *)rsdt->sdt_pointer[i];
if (memcmp(header->signature, signature, 4) == 0) {
if (check_sdt(header))
@@ -62,7 +62,7 @@ void *find_sdt(struct rsdt *rsdt, const char *signature)
return NULL;
}
-void acpi_install()
+void acpi_install(void)
{
struct rsdp *rsdp = find_rsdp();
assert(rsdp && rsdp->header.revision == 0 && check_sdp(&rsdp->header));
@@ -77,7 +77,7 @@ void acpi_install()
madt_install();
}
-void hpet_install(int period)
+void hpet_install(u32 period)
{
if (hpet && hpet->legacy_replacement && hpet->comparator_count > 0) {
struct hpet_registers *r = (struct hpet_registers *)hpet->address.phys;
@@ -97,7 +97,7 @@ void hpet_install(int period)
}
}
-void madt_install()
+void madt_install(void)
{
if (!madt)
return;
diff --git a/kernel/drivers/fpu.c b/kernel/drivers/fpu.c
index f7eeceb..e61e267 100644
--- a/kernel/drivers/fpu.c
+++ b/kernel/drivers/fpu.c
@@ -7,12 +7,12 @@ void set_fpu_cw(const u16 cw)
__asm__ volatile("fldcw %0" ::"m"(cw));
}
-void fpu_install()
+void fpu_install(void)
{
__asm__ volatile("clts");
u32 t = 0;
__asm__ volatile("mov %%cr0, %0" : "=r"(t));
- t &= ~(1 << 2);
+ t &= (u32) ~(1 << 2);
t |= (1 << 1);
__asm__ volatile("mov %0, %%cr0" ::"r"(t));
diff --git a/kernel/drivers/ide.c b/kernel/drivers/ide.c
index 1a94ae3..227dfe5 100644
--- a/kernel/drivers/ide.c
+++ b/kernel/drivers/ide.c
@@ -16,7 +16,7 @@ int ide_stat()
void ide_wait()
{
- u8 stat = 0;
+ int stat = 0;
do
stat = ide_stat();
while ((stat & IDE_BUSY) != 0);
@@ -25,10 +25,10 @@ void ide_wait()
// TODO: Fix strange ide_read bugs
void *ide_read(void *b, u32 block)
{
- int sector_count = BLOCK_SIZE / SECTOR_SIZE; // 2
- int sector = block * sector_count;
+ u8 sector_count = BLOCK_SIZE / SECTOR_SIZE; // 2
+ u32 sector = block * sector_count;
- outb(IDE_IO + IDE_SECTOR_COUNT, sector_count); // Number of sectors
+ outb(IDE_IO + IDE_SECTOR_COUNT, (u8)sector_count); // Number of sectors
outb(IDE_IO + IDE_LOW, LBA_LOW(sector));
outb(IDE_IO + IDE_MID, LBA_MID(sector));
diff --git a/kernel/drivers/interrupts.c b/kernel/drivers/interrupts.c
index 57b0ab5..b0751d6 100644
--- a/kernel/drivers/interrupts.c
+++ b/kernel/drivers/interrupts.c
@@ -90,7 +90,7 @@ void irq_handler(struct regs *r)
}
// Map ISRs to the correct entries in the IDT
-void irq_install()
+void irq_install(void)
{
irq_remap();
@@ -182,7 +182,7 @@ void isr_handler(struct regs *r)
}
}
-void isr_install()
+void isr_install(void)
{
idt_set_gate(0, (u32)isr0, 0x08, 0x8E);
idt_set_gate(1, (u32)isr1, 0x08, 0x8E);
@@ -224,7 +224,7 @@ void isr_install()
/**
* Combined
*/
-void interrupts_install()
+void interrupts_install(void)
{
idt_install();
isr_install();
diff --git a/kernel/drivers/keyboard.c b/kernel/drivers/keyboard.c
index 2bd67ba..67e0a72 100644
--- a/kernel/drivers/keyboard.c
+++ b/kernel/drivers/keyboard.c
@@ -15,7 +15,7 @@ int state = 0;
int merged = 0;
void keyboard_handler()
{
- u32 scancode = (u32)inb(0x60);
+ int scancode = inb(0x60);
// TODO: Support more than two-byte scancodes
if (scancode == 0xe0) {
@@ -40,20 +40,20 @@ void keyboard_handler()
merged = 0;
}
-void keyboard_acknowledge()
+void keyboard_acknowledge(void)
{
while (inb(0x60) != 0xfa)
;
}
-void keyboard_rate()
+void keyboard_rate(void)
{
outb(0x60, 0xF3);
keyboard_acknowledge();
outb(0x60, 0x0); // Rate{00000} Delay{00} 0
}
-void keyboard_install()
+void keyboard_install(void)
{
//keyboard_rate(); TODO: Fix keyboard rate?
irq_install_handler(1, keyboard_handler);
@@ -67,7 +67,7 @@ char keymap[128] = {
0, // Alt key
' ', // Space bar
15, // Caps lock
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // F keys
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // F keys
0, // Num lock
0, // Scroll lock
0, // Home key
diff --git a/kernel/drivers/mouse.c b/kernel/drivers/mouse.c
index a5f5d0c..9b34b0a 100644
--- a/kernel/drivers/mouse.c
+++ b/kernel/drivers/mouse.c
@@ -17,18 +17,18 @@ void mouse_handler()
{
switch (mouse_cycle) {
case 0:
- mouse_byte[0] = inb(0x60);
+ mouse_byte[0] = (char)inb(0x60);
if (((mouse_byte[0] >> 3) & 1) == 1)
mouse_cycle++;
else
mouse_cycle = 0;
break;
case 1:
- mouse_byte[1] = inb(0x60);
+ mouse_byte[1] = (char)inb(0x60);
mouse_cycle++;
break;
case 2:
- mouse_byte[2] = inb(0x60);
+ mouse_byte[2] = (char)inb(0x60);
free(event);
event = malloc(sizeof(*event));
@@ -71,13 +71,13 @@ void mouse_write(u8 a_write)
outb(0x60, a_write);
}
-char mouse_read()
+u8 mouse_read(void)
{
mouse_wait(0);
return inb(0x60);
}
-void mouse_install()
+void mouse_install(void)
{
u8 status;
diff --git a/kernel/drivers/pci.c b/kernel/drivers/pci.c
index 6130cd0..72b9aa8 100644
--- a/kernel/drivers/pci.c
+++ b/kernel/drivers/pci.c
@@ -100,7 +100,7 @@ static u32 pci_isa = 0;
static u8 pci_remaps[4] = { 0 };
// Remap
-void pci_install()
+void pci_install(void)
{
pci_scan(&find_isa_bridge, -1, &pci_isa);
if (pci_isa) {
@@ -122,7 +122,7 @@ int pci_get_interrupt(u32 device)
u32 irq_pin = pci_read_field(device, 0x3D, 1);
if (irq_pin == 0)
return (int)pci_read_field(device, PCI_INTERRUPT_LINE, 1);
- int pirq = (int)(irq_pin + pci_extract_slot(device) - 2) % 4;
+ int pirq = ((int)irq_pin + pci_extract_slot(device) - 2) % 4;
int int_line = (int)pci_read_field(device, PCI_INTERRUPT_LINE, 1);
if (pci_remaps[pirq] >= 0x80) {
diff --git a/kernel/drivers/rtl8139.c b/kernel/drivers/rtl8139.c
index 14770c8..ec45bd7 100644
--- a/kernel/drivers/rtl8139.c
+++ b/kernel/drivers/rtl8139.c
@@ -13,12 +13,11 @@
static u8 mac[6];
static u8 *rx_buffer;
-static u32 current_packet_ptr;
static u32 rtl_device_pci = 0;
static u32 rtl_iobase = 0;
-u8 *rtl8139_get_mac()
+u8 *rtl8139_get_mac(void)
{
if (!rtl_device_pci)
return NULL;
@@ -26,8 +25,10 @@ u8 *rtl8139_get_mac()
return mac;
}
-void rtl8139_receive_packet()
+void rtl8139_receive_packet(void)
{
+ static u32 current_packet_ptr;
+
if (!rtl_device_pci)
return;
@@ -39,12 +40,12 @@ void rtl8139_receive_packet()
memcpy(packet, t, length);
ethernet_handle_packet(packet, length);
- current_packet_ptr = (current_packet_ptr + length + 4 + 3) & (~3);
+ current_packet_ptr = (current_packet_ptr + length + 4 + 3) & (u32)(~3);
if (current_packet_ptr >= RX_BUF_SIZE)
current_packet_ptr -= RX_BUF_SIZE;
- outw(rtl_iobase + RTL_PORT_RXPTR, current_packet_ptr - 0x10);
+ outw((u16)(rtl_iobase + RTL_PORT_RXPTR), (u16)(current_packet_ptr - 0x10));
}
static u8 tsad_array[4] = { 0x20, 0x24, 0x28, 0x2C };
@@ -56,8 +57,8 @@ void rtl8139_send_packet(void *data, u32 len)
return;
/* printf("Sending packet %d\n\n", len); */
- outl(rtl_iobase + tsad_array[tx_current], (u32)data);
- outl(rtl_iobase + tsd_array[tx_current++], len);
+ outl((u16)(rtl_iobase + tsad_array[tx_current]), (u32)data);
+ outl((u16)(rtl_iobase + tsd_array[tx_current++]), len);
if (tx_current > 3)
tx_current = 0;
}
@@ -69,16 +70,15 @@ void rtl8139_find(u32 device, u16 vendor_id, u16 device_id, void *extra)
}
}
-// TODO: Fix late packet arrival
void rtl8139_irq_handler()
{
if (!rtl_device_pci)
return;
/* print("\nRTL INT!\n"); */
- u16 status = inw(rtl_iobase + RTL_PORT_ISR);
+ u16 status = inw((u16)(rtl_iobase + RTL_PORT_ISR));
- outw(rtl_iobase + RTL_PORT_ISR, 0x5);
+ outw((u16)(rtl_iobase + RTL_PORT_ISR), 0x5);
if (status & RTL_TOK) {
print("Got response!\n");
@@ -88,7 +88,7 @@ void rtl8139_irq_handler()
}
}
-void rtl8139_init()
+void rtl8139_init(void)
{
if (!rtl_device_pci)
return;
@@ -104,41 +104,41 @@ void rtl8139_init()
rtl_iobase = 0;
if (rtl_bar0 & 0x00000001)
- rtl_iobase = rtl_bar0 & (~0x3);
+ rtl_iobase = rtl_bar0 & ((u32)~0x3);
// Get mac address
- for (int i = 0; i < 6; ++i)
- mac[i] = inb(rtl_iobase + RTL_PORT_MAC + i);
+ for (u32 i = 0; i < 6; ++i)
+ mac[i] = inb((u16)(rtl_iobase + RTL_PORT_MAC + i));
printf("Mac address: %x:%x:%x:%x:%x:%x\n", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
// Activate
- outb(rtl_iobase + RTL_PORT_CONFIG, 0x0);
+ outb((u16)(rtl_iobase + RTL_PORT_CONFIG), 0x0);
// Reset
outb((u16)(rtl_iobase + RTL_PORT_CMD), 0x10);
- while ((inb(rtl_iobase + RTL_PORT_CMD) & 0x10) != 0)
+ while ((inb((u16)(rtl_iobase + RTL_PORT_CMD)) & 0x10) != 0)
;
// Set receive buffer
rx_buffer = (u8 *)malloc(RX_BUF_SIZE + 1516);
memset(rx_buffer, 0, RX_BUF_SIZE + 1516);
- outl(rtl_iobase + RTL_PORT_RBSTART, (u32)rx_buffer);
+ outl((u16)(rtl_iobase + RTL_PORT_RBSTART), (u32)rx_buffer);
// Set TOK and ROK
- outw(rtl_iobase + RTL_PORT_IMR, 0x0005);
+ outw((u16)(rtl_iobase + RTL_PORT_IMR), 0x0005);
// AB+AM+APM+AAP except WRAP
- outl(rtl_iobase + RTL_PORT_RCR, 0xf | (1 << 7));
+ outl((u16)(rtl_iobase + RTL_PORT_RCR), 0xf | (1 << 7));
// Enable receive and transmit
- outb(rtl_iobase + RTL_PORT_CMD, 0x08 | 0x04);
+ outb((u16)(rtl_iobase + RTL_PORT_CMD), 0x08 | 0x04);
// Install interrupt handler
- u32 rtl_irq = pci_get_interrupt(rtl_device_pci);
+ int rtl_irq = pci_get_interrupt(rtl_device_pci);
irq_install_handler(rtl_irq, rtl8139_irq_handler);
}
-int rtl8139_install()
+int rtl8139_install(void)
{
pci_scan(&rtl8139_find, -1, &rtl_device_pci);
@@ -146,5 +146,6 @@ int rtl8139_install()
print("Found rtl8139 card\n");
rtl8139_init();
}
- return rtl_device_pci;
+
+ return (int)rtl_device_pci;
}
diff --git a/kernel/drivers/timer.c b/kernel/drivers/timer.c
index 3bc1811..e9e90a0 100644
--- a/kernel/drivers/timer.c
+++ b/kernel/drivers/timer.c
@@ -11,11 +11,11 @@ void timer_phase(int hz)
{
int divisor = 3579545 / 3 / hz;
outb(0x43, 0x36); // 01 10 11 0b // CTR, RW, MODE, BCD
- outb(0x40, divisor & 0xFF);
- outb(0x40, divisor >> 8);
+ outb(0x40, (u8)(divisor & 0xFF));
+ outb(0x40, (u8)(divisor >> 8));
}
-u32 timer_get()
+u32 timer_get(void)
{
return timer_ticks;
}
@@ -38,7 +38,7 @@ void timer_wait(u32 ticks)
}
// Install timer handler into IRQ0
-void timer_install()
+void timer_install(void)
{
/* hpet_install(10000); // TODO: Find optimal femtosecond period */
/* if (!hpet) */
diff --git a/kernel/features/fs.c b/kernel/features/fs.c
index ceb345d..941ba76 100644
--- a/kernel/features/fs.c
+++ b/kernel/features/fs.c
@@ -9,12 +9,12 @@
#include <print.h>
#include <str.h>
-void *buffer_read(int block)
+void *buffer_read(u32 block)
{
return ide_read(malloc(BLOCK_SIZE), block);
}
-struct superblock *get_superblock()
+struct superblock *get_superblock(void)
{
struct superblock *sb = buffer_read(EXT2_SUPER);
if (sb->magic != EXT2_MAGIC)
@@ -22,21 +22,21 @@ struct superblock *get_superblock()
return sb;
}
-struct bgd *get_bgd()
+struct bgd *get_bgd(void)
{
return buffer_read(EXT2_SUPER + 1);
}
-struct inode *get_inode(int i)
+struct inode *get_inode(u32 i)
{
struct superblock *s = get_superblock();
assert(s);
struct bgd *b = get_bgd();
assert(b);
- int block_group = (i - 1) / s->inodes_per_group;
- int index = (i - 1) % s->inodes_per_group;
- int block = (index * INODE_SIZE) / BLOCK_SIZE;
+ u32 block_group = (i - 1) / s->inodes_per_group;
+ u32 index = (i - 1) % s->inodes_per_group;
+ u32 block = (index * INODE_SIZE) / BLOCK_SIZE;
b += block_group;
u32 *data = buffer_read(b->inode_table + block);
@@ -57,7 +57,7 @@ void *read_inode(struct inode *in)
if (!in)
return NULL;
- int num_blocks = in->blocks / (BLOCK_SIZE / SECTOR_SIZE);
+ u32 num_blocks = in->blocks / (BLOCK_SIZE / SECTOR_SIZE);
assert(num_blocks != 0);
if (!num_blocks)
@@ -68,13 +68,12 @@ void *read_inode(struct inode *in)
printf("Loading %dKiB\n", sz >> 10);
assert(buf != NULL);
- int indirect = 0;
-
- int blocknum = 0;
+ u32 indirect = 0;
+ u32 blocknum = 0;
char *data = 0;
// TODO: Support triply indirect pointers
// TODO: This can be heavily optimized by saving the indirect block lists
- for (int i = 0; i < num_blocks; i++) {
+ for (u32 i = 0; i < num_blocks; i++) {
if (i < 12) {
blocknum = in->block[i];
data = buffer_read(blocknum);
@@ -130,10 +129,10 @@ void *read_file(char *path)
return read_inode(get_inode(inode));
}
-int find_inode(const char *name, int dir_inode)
+u32 find_inode(const char *name, u32 dir_inode)
{
if (!dir_inode)
- return -1;
+ return (unsigned)-1;
struct inode *i = get_inode(dir_inode);
@@ -160,10 +159,10 @@ int find_inode(const char *name, int dir_inode)
} while (sum < (1024 * i->blocks / 2));
free(buf);
- return -1;
+ return (unsigned)-1;
}
-void ls_root()
+void ls_root(void)
{
struct inode *i = get_inode(2);
@@ -176,11 +175,11 @@ void ls_root()
struct dirent *d = (struct dirent *)buf;
+ u16 calc = 0;
int sum = 0;
- int calc = 0;
printf("\nRoot directory:\n");
do {
- calc = (sizeof(struct dirent) + d->name_len + 4) & ~0x3;
+ calc = (sizeof(struct dirent) + d->name_len + 4) & (u32)~0x3;
sum += d->total_len;
d->name[d->name_len] = '\0';
printf("/%s\n", d->name);
diff --git a/kernel/features/net.c b/kernel/features/net.c
index f9b9d12..12d4162 100644
--- a/kernel/features/net.c
+++ b/kernel/features/net.c
@@ -9,7 +9,7 @@
#include <rtl8139.h>
#include <str.h>
-static u32 ip_addr = 0x0f02000a;
+static u32 current_ip_addr = 0x0f02000a;
static u32 gateway_addr = 0x0202000a;
static u8 gateway_mac[6] = { 0 };
@@ -23,12 +23,12 @@ u16 ip_calculate_checksum(struct ip_packet *packet)
u16 *array = (u16 *)packet;
u32 sum = 0;
for (int i = 0; i < array_size; i++) {
- sum += htons(array[i]);
+ sum += (u32)htons(array[i]);
}
u32 carry = sum >> 16;
sum = sum & 0x0000ffff;
sum = sum + carry;
- u16 ret = ~sum;
+ u16 ret = (u16)~sum;
return ret;
}
@@ -39,26 +39,26 @@ u16 tcp_calculate_checksum(struct tcp_packet *packet, struct tcp_pseudo_header *
u16 *s = (u16 *)header;
// TODO: Checksums for options?
- for (int i = 0; i < 6; ++i) {
- sum += ntohs(s[i]);
+ for (int i = 0; i < 6; i++) {
+ sum += (u32)ntohs(s[i]);
if (sum > 0xffff) {
sum = (sum >> 16) + (sum & 0xffff);
}
}
s = (u16 *)packet;
- for (int i = 0; i < 10; ++i) {
- sum += ntohs(s[i]);
+ for (int i = 0; i < 10; i++) {
+ sum += (u32)ntohs(s[i]);
if (sum > 0xffff) {
sum = (sum >> 16) + (sum & 0xffff);
}
}
- u16 d_words = len / 2;
+ u16 d_words = (u16)(len / 2);
s = (u16 *)data;
- for (unsigned int i = 0; i < d_words; ++i) {
- sum += ntohs(s[i]);
+ for (u32 i = 0; i < d_words; ++i) {
+ sum += (u32)ntohs(s[i]);
if (sum > 0xffff) {
sum = (sum >> 16) + (sum & 0xffff);
}
@@ -72,7 +72,7 @@ u16 tcp_calculate_checksum(struct tcp_packet *packet, struct tcp_pseudo_header *
u16 *f = (u16 *)tmp;
- sum += ntohs(f[0]);
+ sum += (u32)ntohs(f[0]);
if (sum > 0xffff) {
sum = (sum >> 16) + (sum & 0xffff);
}
@@ -92,7 +92,7 @@ u16 icmp_calculate_checksum(struct icmp_packet *packet)
if (sum > 0xffff)
sum = (sum >> 16) + (sum & 0xffff);
- return ~sum;
+ return (u16)~sum;
}
void *dhcp_get_options(struct dhcp_packet *packet, u8 type)
@@ -118,12 +118,12 @@ void *dhcp_get_options(struct dhcp_packet *packet, u8 type)
void ethernet_send_packet(u8 *dst, u8 *data, int len, int prot)
{
print("Ethernet send packet\n");
- struct ethernet_packet *packet = malloc(sizeof(*packet) + len);
+ struct ethernet_packet *packet = malloc(sizeof(*packet) + (u32)len);
memcpy(packet->src, rtl8139_get_mac(), 6);
memcpy(packet->dst, dst, 6);
- memcpy(packet->data, data, len);
- packet->type = htons(prot);
- rtl8139_send_packet(packet, sizeof(*packet) + len);
+ memcpy(packet->data, data, (u32)len);
+ packet->type = (u16)htons(prot);
+ rtl8139_send_packet(packet, sizeof(*packet) + (u32)len);
free(packet);
}
@@ -134,10 +134,10 @@ void arp_send_packet(u8 *dst_mac, u32 dst_protocol_addr, u8 opcode)
struct arp_packet *packet = malloc(sizeof(*packet));
memcpy(packet->src_mac, rtl8139_get_mac(), 6);
- packet->src_protocol_addr = ip_addr;
+ packet->src_protocol_addr = current_ip_addr;
memcpy(packet->dst_mac, dst_mac, 6);
packet->dst_protocol_addr = dst_protocol_addr;
- packet->opcode = htons(opcode);
+ packet->opcode = (u16)htons(opcode);
packet->hardware_addr_len = 6;
packet->protocol_addr_len = 4;
packet->hardware_type = htons(HARDWARE_TYPE_ETHERNET);
@@ -148,23 +148,23 @@ void arp_send_packet(u8 *dst_mac, u32 dst_protocol_addr, u8 opcode)
}
int arp_lookup(u8 *ret_hardware_addr, u32 ip_addr);
-void ip_send_packet(u32 dst, void *data, int len, int prot)
+void ip_send_packet(u32 dst, void *data, int len, u8 prot)
{
print("IP send packet\n");
- struct ip_packet *packet = malloc(sizeof(*packet) + len);
+ struct ip_packet *packet = malloc(sizeof(*packet) + (u32)len);
memset(packet, 0, sizeof(*packet));
packet->version_ihl = ((0x4 << 4) | (0x5 << 0));
- packet->length = sizeof(*packet) + len;
+ packet->length = (u16)sizeof(*packet) + (u16)len;
packet->id = htons(1); // TODO: IP fragmentation
packet->ttl = 64;
packet->protocol = prot;
- packet->src = ip_addr;
+ packet->src = current_ip_addr;
packet->dst = dst;
- packet->length = htons(sizeof(*packet) + len);
- packet->checksum = htons(ip_calculate_checksum(packet));
+ packet->length = (u16)htons(sizeof(*packet) + (u32)len);
+ packet->checksum = (u16)htons(ip_calculate_checksum(packet));
if (data)
- memcpy(packet->data, data, len);
+ memcpy(packet->data, data, (u32)len);
u8 dst_mac[6];
@@ -190,18 +190,18 @@ void ip_send_packet(u32 dst, void *data, int len, int prot)
void udp_send_packet(u32 dst, u16 src_port, u16 dst_port, void *data, int len)
{
print("UDP send packet\n");
- int length = sizeof(struct udp_packet) + len;
+ u32 length = sizeof(struct udp_packet) + (u32)len;
struct udp_packet *packet = malloc(length);
memset(packet, 0, sizeof(*packet));
- packet->src_port = htons(src_port);
- packet->dst_port = htons(dst_port);
- packet->length = htons(length);
+ packet->src_port = (u16)htons(src_port);
+ packet->dst_port = (u16)htons(dst_port);
+ packet->length = (u16)htons(length);
packet->checksum = 0; // Optional
if (data)
- memcpy(packet->data, data, len);
+ memcpy(packet->data, data, (u32)len);
- ip_send_packet(dst, packet, length, IP_PROT_UDP);
+ ip_send_packet(dst, packet, (int)length, IP_PROT_UDP);
free(packet);
}
@@ -209,14 +209,14 @@ u32 seq_no, ack_no = 0; // TODO: Per socket
void tcp_send_packet(u32 dst, u16 src_port, u16 dst_port, u16 flags, void *data, int len)
{
print("TCP send packet\n");
- int length = sizeof(struct tcp_packet) + len;
+ u32 length = sizeof(struct tcp_packet) + (u32)len;
struct tcp_packet *packet = malloc(length);
memset(packet, 0, sizeof(*packet));
- packet->src_port = htons(src_port);
- packet->dst_port = htons(dst_port);
+ packet->src_port = (u16)htons(src_port);
+ packet->dst_port = (u16)htons(dst_port);
packet->seq_number = htonl(seq_no);
packet->ack_number = flags & TCP_FLAG_ACK ? htonl(ack_no) : 0;
- packet->flags = htons(0x5000 ^ (flags & 0xff));
+ packet->flags = (u16)htons(0x5000 ^ (flags & 0xff));
packet->window_size = htons(1548 - 54);
packet->urgent = 0;
packet->checksum = 0; // Later
@@ -224,28 +224,28 @@ void tcp_send_packet(u32 dst, u16 src_port, u16 dst_port, u16 flags, void *data,
if ((flags & 0xff) == TCP_FLAG_SYN)
seq_no++;
else
- seq_no += len;
+ seq_no += (u32)len;
if (data)
- memcpy(packet->data, data, len);
+ memcpy(packet->data, data, (u32)len);
struct tcp_pseudo_header checksum_hd = {
- .src = ip_addr,
+ .src = current_ip_addr,
.dst = dst,
.zeros = 0,
.protocol = 6,
- .tcp_len = htons(length),
+ .tcp_len = (u16)htons(length),
};
u16 checksum = tcp_calculate_checksum(packet, &checksum_hd, data,
- length - (htons(packet->flags) >> 12) * 4);
- packet->checksum = htons(checksum);
+ length - ((u32)htons(packet->flags) >> 12) * 4);
+ packet->checksum = (u16)htons(checksum);
- ip_send_packet(dst, packet, length, IP_PROT_TCP);
+ ip_send_packet(dst, packet, (int)length, IP_PROT_TCP);
free(packet);
}
void dhcp_make_packet(struct dhcp_packet *packet, u8 msg_type);
-void dhcp_request()
+void dhcp_request(void)
{
u32 dst = 0xffffffff;
struct dhcp_packet *packet = malloc(sizeof(*packet));
@@ -282,8 +282,8 @@ void dhcp_handle_packet(struct dhcp_packet *packet)
print("DHCP offer\n");
dhcp_request();
} else if (*type == 5) { // ACK
- ip_addr = packet->your_ip;
- printf("ACK! New IP: %x\n", ip_addr);
+ current_ip_addr = packet->your_ip;
+ printf("ACK! New IP: %x\n", current_ip_addr);
}
free(type);
}
@@ -292,8 +292,8 @@ void dhcp_handle_packet(struct dhcp_packet *packet)
void tcp_handle_packet(struct tcp_packet *packet, u32 dst, int len)
{
printf("TCP Port: %d\n", ntohs(packet->dst_port));
- int data_length = len - (htons(packet->flags) >> 12) * 4;
- u16 flags = ntohs(packet->flags);
+ u32 data_length = (u32)len - ((u32)htons(packet->flags) >> 12) * 4;
+ u16 flags = (u16)ntohs(packet->flags);
printf("%b\n", flags);
if (seq_no != ntohl(packet->ack_number)) {
@@ -345,7 +345,6 @@ void udp_handle_packet(struct udp_packet *packet)
void ip_handle_packet(struct ip_packet *packet, int len)
{
- (void)len;
switch (packet->protocol) {
case IP_PROT_ICMP:
print("ICMP Packet!\n");
@@ -375,7 +374,7 @@ void arp_handle_packet(struct arp_packet *packet, int len)
u32 dst_protocol_addr = packet->src_protocol_addr;
if (ntohs(packet->opcode) == ARP_REQUEST) {
print("Got ARP request\n");
- if (packet->dst_protocol_addr == ip_addr) {
+ if (packet->dst_protocol_addr == current_ip_addr) {
print("Returning ARP request\n");
arp_send_packet(dst_mac, dst_protocol_addr, ARP_REPLY);
}
@@ -397,7 +396,7 @@ void arp_handle_packet(struct arp_packet *packet, int len)
void ethernet_handle_packet(struct ethernet_packet *packet, int len)
{
void *data = packet->data;
- int data_len = len - sizeof(*packet);
+ int data_len = len - (int)sizeof(*packet);
if (ntohs(packet->type) == ETHERNET_TYPE_ARP) {
print("ARP PACKET\n");
arp_handle_packet(data, data_len);
@@ -440,7 +439,7 @@ void dhcp_make_packet(struct dhcp_packet *packet, u8 msg_type)
*(options++) = 0xff;
}
-void dhcp_discover()
+void dhcp_discover(void)
{
print("DHCP discover\n");
u32 dst_ip = 0xffffffff;
@@ -480,7 +479,7 @@ int arp_lookup(u8 *ret_hardware_addr, u32 ip_addr)
* Install
*/
-void net_install()
+void net_install(void)
{
if (rtl8139_install()) {
sti();
diff --git a/kernel/features/proc.c b/kernel/features/proc.c
index 16931e3..76f552b 100644
--- a/kernel/features/proc.c
+++ b/kernel/features/proc.c
@@ -12,9 +12,8 @@
#include <str.h>
#include <timer.h>
-u32 pid = 0;
+u32 current_pid = 0;
u32 quantum = 0;
-struct proc *kernel_proc;
struct proc *priority_proc;
struct list *proc_list;
struct node *current;
@@ -62,17 +61,17 @@ void scheduler(struct regs *regs)
/* printf("{%d}", ((struct proc *)current->data)->pid); */
}
-void scheduler_enable()
+void scheduler_enable(void)
{
irq_install_handler(0, scheduler);
}
-void scheduler_disable()
+void scheduler_disable(void)
{
- irq_install_handler(0, timer_handler);
+ irq_install_handler(0, scheduler);
}
-void proc_print()
+void proc_print(void)
{
struct node *node = proc_list->head;
@@ -85,7 +84,7 @@ void proc_print()
printf("\n");
}
-struct proc *proc_current()
+struct proc *proc_current(void)
{
return current && current->data ? current->data : NULL;
}
@@ -99,8 +98,8 @@ void proc_send(struct proc *src, struct proc *dest, u32 type, void *data)
msg->src = src;
msg->dest = dest;
msg->msg = malloc(sizeof(struct message));
- msg->msg->src = src->pid;
- msg->msg->type = type;
+ msg->msg->src = (int)src->pid;
+ msg->msg->type = (int)type;
msg->msg->data = data;
list_add(dest->messages, msg);
priority_proc = dest;
@@ -158,10 +157,10 @@ void proc_yield(struct regs *r)
scheduler(r);
}
-struct proc *proc_make()
+struct proc *proc_make(void)
{
struct proc *proc = malloc(sizeof(*proc));
- proc->pid = pid++;
+ proc->pid = current_pid++;
proc->messages = list_new();
proc->state = PROC_RUNNING;
@@ -171,10 +170,10 @@ struct proc *proc_make()
return proc;
}
-extern void proc_jump_userspace();
+extern void proc_jump_userspace(void);
u32 _esp, _eip;
-void proc_init()
+void proc_init(void)
{
if (proc_list)
return;
@@ -186,15 +185,15 @@ void proc_init()
kernel_proc = proc_make();
struct node *new = list_add(proc_list, proc_make());
- bin_load("/bin/init", new->data);
+ bin_load((char *)"/bin/init", new->data);
current = new;
_eip = ((struct proc *)new->data)->regs.eip;
_esp = ((struct proc *)new->data)->regs.useresp;
- int argc = 2;
+ u32 argc = 2;
char **argv = malloc(sizeof(*argv) * (argc + 1));
- argv[0] = "init";
+ argv[0] = strdup("init");
argv[1] = (char *)boot_passed->vbe;
argv[2] = NULL;
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c
index 798ca45..63badd9 100644
--- a/kernel/features/syscall.c
+++ b/kernel/features/syscall.c
@@ -43,8 +43,8 @@ void syscall_handler(struct regs *r)
case SYS_EXEC: {
char *path = (char *)r->ebx;
struct proc *proc = proc_make();
- r->eax = bin_load(path, proc);
- int argc = 3; // TODO: Add argc evaluator
+ r->eax = (u32)bin_load(path, proc);
+ u32 argc = 3; // TODO: Add argc evaluator
char **argv = malloc(sizeof(*argv) * (argc + 1));
argv[0] = (char *)r->ecx;
argv[1] = (char *)r->edx;
@@ -54,11 +54,11 @@ void syscall_handler(struct regs *r)
((u32 *)proc->regs.useresp)[0] = argc;
((u32 *)proc->regs.useresp)[1] = (u32)argv;
if (r->eax)
- proc_exit(proc, r->eax);
+ proc_exit(proc, (int)r->eax);
break;
}
case SYS_EXIT: {
- proc_exit(proc_current(), r->ebx);
+ proc_exit(proc_current(), (int)r->ebx);
break;
}
case SYS_YIELD: {
@@ -98,7 +98,7 @@ void syscall_handler(struct regs *r)
}
}
-void syscall_init()
+void syscall_init(void)
{
idt_set_gate(0x80, (u32)isr128, 0x08, 0x8E);
isr_install_handler(0x80, syscall_handler);
diff --git a/kernel/inc/acpi.h b/kernel/inc/acpi.h
index 4e04037..f2fd030 100644
--- a/kernel/inc/acpi.h
+++ b/kernel/inc/acpi.h
@@ -183,8 +183,8 @@ struct madt *madt;
struct fadt *fadt;
struct hpet *hpet;
-void acpi_install();
-void hpet_install(int frequency);
-void madt_install();
+void acpi_install(void);
+void hpet_install(u32 period);
+void madt_install(void);
#endif
diff --git a/kernel/inc/fpu.h b/kernel/inc/fpu.h
index d747708..d3ec8d9 100644
--- a/kernel/inc/fpu.h
+++ b/kernel/inc/fpu.h
@@ -3,6 +3,6 @@
#ifndef FPU_H
#define FPU_H
-void fpu_install();
+void fpu_install(void);
#endif
diff --git a/kernel/inc/fs.h b/kernel/inc/fs.h
index 775a1ce..d7e3544 100644
--- a/kernel/inc/fs.h
+++ b/kernel/inc/fs.h
@@ -93,10 +93,10 @@ struct file {
u32 curr_block_pos;
};
-int find_inode(const char *name, int dir_inode);
-struct inode *get_inode(int i);
+u32 find_inode(const char *name, u32 dir_inode);
+struct inode *get_inode(u32 i);
void *read_inode(struct inode *in);
void *read_file(char *path);
-void ls_root(); // DEMO ;)
+void ls_root(void); // DEMO ;)
#endif
diff --git a/kernel/inc/interrupts.h b/kernel/inc/interrupts.h
index e943e5a..61d31fc 100644
--- a/kernel/inc/interrupts.h
+++ b/kernel/inc/interrupts.h
@@ -36,7 +36,7 @@ void irq_uninstall_handler(int irq);
void isr_install_handler(int isr, void (*handler)(struct regs *r));
void isr_uninstall_handler(int isr);
-void interrupts_install();
+void interrupts_install(void);
// External handlers (ASM)
diff --git a/kernel/inc/keyboard.h b/kernel/inc/keyboard.h
index f0effc7..32168f4 100644
--- a/kernel/inc/keyboard.h
+++ b/kernel/inc/keyboard.h
@@ -3,6 +3,6 @@
#ifndef KEYBOARD_H
#define KEYBOARD_H
-void keyboard_install();
+void keyboard_install(void);
#endif
diff --git a/kernel/inc/mouse.h b/kernel/inc/mouse.h
index ccea383..e8072aa 100644
--- a/kernel/inc/mouse.h
+++ b/kernel/inc/mouse.h
@@ -3,6 +3,6 @@
#ifndef MOUSE_H
#define MOUSE_H
-void mouse_install();
+void mouse_install(void);
#endif
diff --git a/kernel/inc/net.h b/kernel/inc/net.h
index 81754d8..26ee1ef 100644
--- a/kernel/inc/net.h
+++ b/kernel/inc/net.h
@@ -138,6 +138,6 @@ struct arp_table_entry {
};
void ethernet_handle_packet(struct ethernet_packet *packet, int len);
-void net_install();
+void net_install(void);
#endif
diff --git a/kernel/inc/pci.h b/kernel/inc/pci.h
index 10aea56..11fad6f 100644
--- a/kernel/inc/pci.h
+++ b/kernel/inc/pci.h
@@ -61,25 +61,26 @@ struct pci_device_descriptor {
u8 revision;
};
-static inline int pci_extract_bus(u32 device)
+static inline u8 pci_extract_bus(u32 device)
{
return (u8)((device >> 16));
}
-static inline int pci_extract_slot(u32 device)
+static inline u8 pci_extract_slot(u32 device)
{
return (u8)((device >> 8));
}
-static inline int pci_extract_func(u32 device)
+static inline u8 pci_extract_func(u32 device)
{
return (u8)(device);
}
static inline u32 pci_get_addr(u32 device, int field)
{
- return 0x80000000 | (pci_extract_bus(device) << 16) | (pci_extract_slot(device) << 11) |
- (pci_extract_func(device) << 8) | ((field)&0xFC);
+ return 0x80000000 | (u32)(pci_extract_bus(device) << 16) |
+ (u32)(pci_extract_slot(device) << 11) | (u32)(pci_extract_func(device) << 8) |
+ ((field)&0xFC);
}
static inline u32 pci_box_device(int bus, int slot, int func)
@@ -96,6 +97,6 @@ void pci_scan_slot(pci_func_t f, int type, int bus, int slot, void *extra);
void pci_scan_bus(pci_func_t f, int type, int bus, void *extra);
void pci_scan(pci_func_t f, int type, void *extra);
int pci_get_interrupt(u32 device);
-void pci_install();
+void pci_install(void);
#endif
diff --git a/kernel/inc/proc.h b/kernel/inc/proc.h
index 97ee69a..ad95104 100644
--- a/kernel/inc/proc.h
+++ b/kernel/inc/proc.h
@@ -36,16 +36,16 @@ struct proc_message {
struct proc *kernel_proc;
-void scheduler_enable();
-void scheduler_disable();
-void proc_init();
-void proc_print();
-struct proc *proc_current();
+void scheduler_enable(void);
+void scheduler_disable(void);
+void proc_init(void);
+void proc_print(void);
+struct proc *proc_current(void);
void proc_send(struct proc *src, struct proc *dest, u32 type, void *data);
struct proc_message *proc_receive(struct proc *proc);
struct proc *proc_from_pid(u32 pid);
void proc_exit(struct proc *proc, int status);
void proc_yield(struct regs *r);
-struct proc *proc_make();
+struct proc *proc_make(void);
#endif
diff --git a/kernel/inc/rtl8139.h b/kernel/inc/rtl8139.h
index d84d115..faeb3f6 100644
--- a/kernel/inc/rtl8139.h
+++ b/kernel/inc/rtl8139.h
@@ -28,8 +28,8 @@
#define RTL_PORT_RXMISS 0x4C
#define RTL_PORT_CONFIG 0x52
-int rtl8139_install();
+int rtl8139_install(void);
void rtl8139_send_packet(void *data, u32 len);
-u8 *rtl8139_get_mac();
+u8 *rtl8139_get_mac(void);
#endif
diff --git a/kernel/inc/syscall.h b/kernel/inc/syscall.h
index 3f89365..ff13d39 100644
--- a/kernel/inc/syscall.h
+++ b/kernel/inc/syscall.h
@@ -3,6 +3,6 @@
#ifndef SYSCALL_H
#define SYSCALL_H
-void syscall_init();
+void syscall_init(void);
#endif
diff --git a/kernel/inc/test.h b/kernel/inc/test.h
deleted file mode 100644
index 8bd0d41..0000000
--- a/kernel/inc/test.h
+++ /dev/null
@@ -1,24 +0,0 @@
-// MIT License, Copyright (c) 2020 Marvin Borner
-
-#ifndef TEST_H
-#define TEST_H
-
-#include <boot.h>
-#include <print.h>
-#include <str.h>
-
-#define a_mag 0x55
-#define b_mag 0x42
-
-void pass_or_fail(const char *file_name, int line_num, const char *func, const char *first,
- const char *second, int success);
-
-#define check(exp) pass_or_fail(__FILE__, __LINE__, __func__, #exp, "1", exp);
-#define equals(first, second) \
- pass_or_fail(__FILE__, __LINE__, __func__, #first, #second, (first) == (second));
-#define equals_str(first, second) \
- pass_or_fail(__FILE__, __LINE__, __func__, #first, #second, strcmp((first), (second)) == 0);
-
-void test_all(struct vid_info *vid_info);
-
-#endif
diff --git a/kernel/inc/timer.h b/kernel/inc/timer.h
index fbd1500..21dd437 100644
--- a/kernel/inc/timer.h
+++ b/kernel/inc/timer.h
@@ -5,9 +5,9 @@
#include <def.h>
-u32 timer_get();
+u32 timer_get(void);
void timer_wait(u32 ticks);
-void timer_install();
-void timer_handler(); // For scheduler
+void timer_install(void);
+void timer_handler(void); // For scheduler
#endif