-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.c
89 lines (75 loc) · 1.71 KB
/
common.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// common.c -- Defines some global functions.
#include "defs.h"
#include "common.h"
// Write len copies of val into dest.
void memset(void *dest, int val, uint32_t len)
{
uint8_t *temp = (uint8_t *)dest;
for ( ; len != 0; len--) *temp++ = val;
}
void* memmove(void *dst, const void *src, uint32_t n)
{
const char *s;
char *d;
s = src;
d = dst;
if(s < d && s + n > d){
s += n;
d += n;
while(n-- > 0)
*--d = *--s;
} else
while(n-- > 0)
*d++ = *s++;
return dst;
}
void*
memcpy(void *dst, const void *src, uint32_t n)
{
return memmove(dst, src, n);
}
// Like strncpy but guaranteed to NUL-terminate.
char* safestrcpy(char *s, const char *t, int n)
{
char *os;
os = s;
if(n <= 0)
return os;
while(--n > 0 && (*s++ = *t++) != 0)
;
*s = 0;
return os;
}
int strlen(char *s)
{
int n;
for ( n = 0 ; s[n]>0 ; n++ )
;
return n;
}
int
strncmp(const char *p, const char *q, uint32_t n)
{
while(n > 0 && *p && *p == *q)
n--, p++, q++;
if(n == 0)
return 0;
return (uint8_t)*p - (uint8_t)*q;
}
extern void panic(const char *message, const char *file, uint32_t line)
{
// We encountered a massive problem and have to stop.
asm volatile("cli"); // Disable interrupts.
kprintf("PANIC(%s) at %s: %d\n", message, file, line);
// trigger Bochs debug mode (magic instruction)
asm volatile("xchg %bx, %bx");
}
extern void panic_assert(const char *file, uint32_t line, const char *desc)
{
// An assertion failed, and we have to panic.
asm volatile("cli"); // Disable interrupts.
kprintf("ASSERTION-FAILED(%s) at %s: %d\n", desc, file, line);
// trigger Bochs debug mode (magic instruction)
asm volatile("xchg %bx, %bx");
//for(;;);
}