-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen.c
38 lines (27 loc) · 849 Bytes
/
gen.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
// gen.c: Generates a "users" file for KoalaOS
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#define NAME_MAXLEN 30
#define PASS_MAXLEN 30
#define SECTOR_SIZE 1024
struct __attribute__((packed)) sys_user {
char name[NAME_MAXLEN];
char pass[PASS_MAXLEN];
uint16_t id;
uint16_t flags;
} users[SECTOR_SIZE / sizeof(struct sys_user)];
int main(void) {
FILE* file = fopen("root/etc/users", "wb");
memset(users, 0, SECTOR_SIZE);
users[0].id = 0x0000;
users[0].flags = 0x0001;
strncpy(users[0].name, "root", NAME_MAXLEN);
strncpy(users[0].pass, "root", PASS_MAXLEN);
users[1].id = 0x0000;
users[1].flags = 0x0000;
strncpy(users[1].name, "user", NAME_MAXLEN);
strncpy(users[1].pass, "user", PASS_MAXLEN);
fwrite((void*)users, 1, SECTOR_SIZE, file);
return 0;
}