diff options
Diffstat (limited to 'libs')
-rw-r--r-- | libs/libc/inc/assert.h | 17 | ||||
-rw-r--r-- | libs/libc/inc/print.h | 5 | ||||
-rw-r--r-- | libs/libc/inc/sys.h | 15 | ||||
-rw-r--r-- | libs/libc/print.c | 59 | ||||
-rw-r--r-- | libs/libc/rand.c (renamed from libs/libc/random.c) | 0 | ||||
-rw-r--r-- | libs/libc/sys.c | 2 | ||||
-rw-r--r-- | libs/libgui/gui.c | 52 | ||||
-rw-r--r-- | libs/libgui/gui.h | 2 | ||||
-rw-r--r-- | libs/libgui/msg.c | 31 | ||||
-rw-r--r-- | libs/libgui/msg.h | 7 |
10 files changed, 127 insertions, 63 deletions
diff --git a/libs/libc/inc/assert.h b/libs/libc/inc/assert.h index 9621e36..fb5a857 100644 --- a/libs/libc/inc/assert.h +++ b/libs/libc/inc/assert.h @@ -8,15 +8,20 @@ #ifdef KERNEL #include <proc.h> #define assert(exp) \ - if (!(exp)) { \ - printf("%s:%d: %s: Kernel assertion '%s' failed\n", __FILE__, __LINE__, __func__, \ - #exp); \ - __asm__ volatile("cli\nhlt"); \ + { \ + if (!(exp)) { \ + printf("%s:%d: %s: Kernel assertion '%s' failed\n", __FILE__, __LINE__, \ + __func__, #exp); \ + __asm__ volatile("cli\nhlt"); \ + } \ } #elif defined(USER) #define assert(exp) \ - if (!(exp)) \ - err(1, "%s:%d: %s: Assertion '%s' failed\n", __FILE__, __LINE__, __func__, #exp); + { \ + if (!(exp)) \ + err(1, "%s:%d: %s: Assertion '%s' failed\n", __FILE__, __LINE__, __func__, \ + #exp); \ + } #endif #endif diff --git a/libs/libc/inc/print.h b/libs/libc/inc/print.h index 1d85c33..6d959c3 100644 --- a/libs/libc/inc/print.h +++ b/libs/libc/inc/print.h @@ -14,13 +14,16 @@ int print(const char *str) NONNULL; NORETURN void panic(const char *format, ...) NONNULL; #ifdef USER +#include <sys.h> int vfprintf(const char *path, const char *format, va_list ap) NONNULL; +int viprintf(enum io_type io, const char *format, va_list ap) NONNULL; int fprintf(const char *path, const char *format, ...) NONNULL; +int iprintf(enum io_type io, const char *format, ...) NONNULL; int log(const char *format, ...) NONNULL; void err(int code, const char *format, ...) NONNULL; #else #include <proc.h> -int print_app(enum stream_defaults id, const char *proc_name, const char *str) NONNULL; +int print_prefix(void); void print_trace(u32 count); #endif diff --git a/libs/libc/inc/sys.h b/libs/libc/inc/sys.h index 72a8029..8c8e217 100644 --- a/libs/libc/inc/sys.h +++ b/libs/libc/inc/sys.h @@ -15,6 +15,7 @@ #define SYS_BOOT_SHUTDOWN 0xdead enum sys { + SYS_MIN, SYS_ALLOC, // Allocate memory SYS_SHACCESS, // Access shared memory SYS_FREE, // Free memory @@ -29,10 +30,12 @@ enum sys { SYS_EXIT, // Exit current process SYS_BOOT, // Boot functions (e.g. reboot/shutdown) SYS_YIELD, // Switch to next process + SYS_MAX, }; enum io_type { IO_MIN, + IO_LOGGER, IO_FRAMEBUFFER, IO_NETWORK, IO_KEYBOARD, @@ -44,8 +47,14 @@ enum io_type { // I/O control declarations #define IOCTL_FB_GET 0 -#define IOCTL_BUS_CONNECT 0 -#define IOCTL_BUS_REGISTER 1 +#define IOCTL_BUS_CONNECT_BUS 0 +#define IOCTL_BUS_CONNECT_CONN 1 +#define IOCTL_BUS_REGISTER 2 + +struct bus_header { + u32 conn; + // Data starts here +}; struct event_keyboard { u32 magic; @@ -84,7 +93,7 @@ res exec(const char *path, ...) ATTR((nonnull(1))) SENTINEL; res io_poll(enum io_type *devs) NONNULL; res io_read(enum io_type io, void *buf, u32 offset, u32 count) NONNULL; -res io_write(enum io_type io, void *buf, u32 offset, u32 count) NONNULL; +res io_write(enum io_type io, const void *buf, u32 offset, u32 count) NONNULL; res io_control(enum io_type io, ...); res yield(void); diff --git a/libs/libc/print.c b/libs/libc/print.c index 27048bd..2d08fdb 100644 --- a/libs/libc/print.c +++ b/libs/libc/print.c @@ -7,6 +7,15 @@ #include <mem.h> #include <str.h> +#define RED "\x1B[1;31m" +#define GRN "\x1B[1;32m" +#define YEL "\x1B[1;33m" +#define BLU "\x1B[1;34m" +#define MAG "\x1B[1;35m" +#define CYN "\x1B[1;36m" +#define WHT "\x1B[1;37m" +#define RES "\x1B[0m" + static void append(char *dest, char *src, int index) { for (u32 i = index; i < strlen(src) + index; i++) @@ -98,13 +107,10 @@ int snprintf(char *str, u32 size, const char *format, ...) #ifdef USER #include <sys.h> -#define PATH_OUT "/proc/self/io/out" -#define PATH_LOG "/proc/self/io/log" -#define PATH_ERR "/proc/self/io/err" int vprintf(const char *format, va_list ap) { - return vfprintf(PATH_OUT, format, ap); + return viprintf(IO_LOGGER, format, ap); } int vfprintf(const char *path, const char *format, va_list ap) @@ -114,6 +120,13 @@ int vfprintf(const char *path, const char *format, va_list ap) return write(path, buf, 0, len); } +int viprintf(enum io_type io, const char *format, va_list ap) +{ + char buf[1024] = { 0 }; + int len = vsnprintf(buf, sizeof(buf), format, ap); + return io_write(io, buf, 0, len); +} + int fprintf(const char *path, const char *format, ...) { va_list ap; @@ -124,6 +137,16 @@ int fprintf(const char *path, const char *format, ...) return len; } +int iprintf(enum io_type io, const char *format, ...) +{ + va_list ap; + va_start(ap, format); + int len = viprintf(io, format, ap); + va_end(ap); + + return len; +} + int printf(const char *format, ...) { va_list ap; @@ -138,7 +161,7 @@ int log(const char *format, ...) { va_list ap; va_start(ap, format); - int len = vfprintf(PATH_LOG, format, ap); + int len = viprintf(IO_LOGGER, format, ap); va_end(ap); return len; @@ -150,14 +173,14 @@ NORETURN void err(int code, const char *format, ...) log("ERRNO: %d (%s)\n", errno, strerror(errno)); va_list ap; va_start(ap, format); - vfprintf(PATH_ERR, format, ap); + viprintf(IO_LOGGER, format, ap); va_end(ap); exit(code); } int print(const char *str) { - return write(PATH_OUT, str, 0, strlen(str)); + return io_write(IO_LOGGER, str, 0, strlen(str)); } #else @@ -169,15 +192,6 @@ int print(const char *str) #include <proc.h> #include <serial.h> -#define RED "\x1B[1;31m" -#define GRN "\x1B[1;32m" -#define YEL "\x1B[1;33m" -#define BLU "\x1B[1;34m" -#define MAG "\x1B[1;35m" -#define CYN "\x1B[1;36m" -#define WHT "\x1B[1;37m" -#define RES "\x1B[0m" - static void print_kernel(const char *str) { serial_print(RED); @@ -204,18 +218,11 @@ int printf(const char *format, ...) return len; } -int print_app(enum stream_defaults id, const char *proc_name, const char *str) +int print_prefix(void) { - if (id == STREAM_LOG) - serial_print(CYN "[LOG] to "); - else if (id == STREAM_ERR) - serial_print(YEL "[ERR] to "); - serial_print(proc_name); + serial_print(CYN "[LOG] to "); + serial_print(proc_current()->name); serial_print(": "); - stac(); - serial_print(str); - clac(); - serial_print(RES); return 1; } diff --git a/libs/libc/random.c b/libs/libc/rand.c index 268a21f..268a21f 100644 --- a/libs/libc/random.c +++ b/libs/libc/rand.c diff --git a/libs/libc/sys.c b/libs/libc/sys.c index b0e6e93..cf2165a 100644 --- a/libs/libc/sys.c +++ b/libs/libc/sys.c @@ -138,7 +138,7 @@ res io_read(enum io_type io, void *buf, u32 offset, u32 count) return sys4(SYS_IOREAD, (int)io, (int)buf, (int)offset, (int)count); } -res io_write(enum io_type io, void *buf, u32 offset, u32 count) +res io_write(enum io_type io, const void *buf, u32 offset, u32 count) { return sys4(SYS_IOWRITE, (int)io, (int)buf, (int)offset, (int)count); } diff --git a/libs/libgui/gui.c b/libs/libgui/gui.c index 4e3b4cb..ef99d92 100644 --- a/libs/libgui/gui.c +++ b/libs/libgui/gui.c @@ -8,8 +8,6 @@ #include <list.h> #include <print.h> -#define WM_PATH "wm" - struct gui_widget { u32 id; vec2 pos; @@ -105,6 +103,21 @@ static struct gui_widget *gui_widget_by_id(u32 win_id, u32 widget_id) } /** + * Bus stuff + */ + +static u32 wm_conn = 0; +static void gui_connect_wm(void) +{ + if (wm_conn) { + // TODO: Fix + assert(msg_connect_conn(wm_conn) == EOK); + } else { + assert(msg_connect_bus("wm", &wm_conn) == EOK); + } +} + +/** * GFX wrappers */ @@ -398,7 +411,7 @@ vec2 gui_window_size(u32 win_id) * Window manager interfaces */ -res gui_new_window(void) +res gui_new_window(u32 *id) { if (!windows) windows = list_new(); @@ -406,8 +419,8 @@ res gui_new_window(void) struct gui_window *win = zalloc(sizeof(*win)); struct message_new_window msg = { .header.state = MSG_NEED_ANSWER }; - if (msg_send(pidof(WM_PATH), GUI_NEW_WINDOW, &msg, sizeof(msg)) > 0 && - msg_receive(&msg, sizeof(msg)) > 0 && + gui_connect_wm(); + if (msg_send(GUI_NEW_WINDOW, &msg, sizeof(msg)) > 0 && msg_receive(&msg, sizeof(msg)) > 0 && msg.header.type == (GUI_NEW_WINDOW | MSG_SUCCESS)) { win->id = msg.id; win->ctx = msg.ctx; @@ -418,7 +431,8 @@ res gui_new_window(void) list_add(windows, win); win->widgets = list_new(); - return win->id; + *id = win->id; + return_errno(EOK); } return_errno(EINVAL); @@ -431,7 +445,8 @@ res gui_redraw_window(u32 id) return_errno(ENOENT); struct message_redraw_window msg = { .id = id, .header.state = MSG_NEED_ANSWER }; - if (msg_send(pidof(WM_PATH), GUI_REDRAW_WINDOW, &msg, sizeof(msg)) > 0 && + gui_connect_wm(); + if (msg_send(GUI_REDRAW_WINDOW, &msg, sizeof(msg)) > 0 && msg_receive(&msg, sizeof(msg)) > 0 && msg.header.type == (GUI_REDRAW_WINDOW | MSG_SUCCESS)) return EOK; @@ -456,17 +471,20 @@ static res gui_handle_ping(struct message_ping *msg) msg->header.type |= MSG_SUCCESS; msg->ping = MSG_PING_RECV; - msg_send(msg->header.src, GUI_PING, &msg, sizeof(msg)); - - return errno; + if (msg_connect_conn(msg->header.bus.conn) == EOK && + msg_send(GUI_PING, msg, sizeof(msg)) == EOK) + return EOK; + else + return errno; } static res gui_handle_mouse(struct message_mouse *msg) { if (msg->header.state == MSG_NEED_ANSWER) { - msg_send(msg->header.src, msg->header.type | MSG_SUCCESS, msg, sizeof(*msg)); - - if (errno != EOK) + if (msg_connect_conn(msg->header.bus.conn) == EOK && + msg_send(msg->header.type | MSG_SUCCESS, msg, sizeof(msg)) == EOK) + return EOK; + else return errno; } @@ -495,7 +513,8 @@ static void gui_handle_exit(void) while (iterator) { struct gui_window *win = iterator->data; struct message_destroy_window msg = { .id = win->id }; - msg_send(pidof(WM_PATH), GUI_DESTROY_WINDOW, &msg, sizeof(msg)); + gui_connect_wm(); + msg_send(GUI_DESTROY_WINDOW, &msg, sizeof(msg)); iterator = iterator->next; } @@ -514,7 +533,7 @@ void gui_loop(void) err(1, "Create some windows first\n"); void *msg = zalloc(4096); - while (msg_receive(msg, 4096)) { + while (gui_connect_wm(), msg_receive(msg, 4096) > 0) { struct message_header *head = msg; switch (head->type) { case GUI_PING: @@ -528,4 +547,7 @@ void gui_loop(void) gui_handle_error("loop", EINVAL); } } + + free(msg); + err(1, "Gui loop failed\n"); } diff --git a/libs/libgui/gui.h b/libs/libgui/gui.h index f4c213b..abc50fb 100644 --- a/libs/libgui/gui.h +++ b/libs/libgui/gui.h @@ -18,7 +18,7 @@ enum gui_layer { GUI_LAYER_FG, }; -res gui_new_window(void); +res gui_new_window(u32 *id); res gui_redraw_window(u32 id); res gui_fill(u32 win_id, u32 widget_id, enum gui_layer layer, u32 c); diff --git a/libs/libgui/msg.c b/libs/libgui/msg.c index 051072e..70a77a1 100644 --- a/libs/libgui/msg.c +++ b/libs/libgui/msg.c @@ -6,24 +6,39 @@ #include <print.h> #include <sys.h> -res msg_send(u32 pid, enum message_type type, void *data, u32 size) +// TODO: Remove debug assertions? + +res msg_connect_bus(const char *bus, u32 *conn) +{ + res ret = io_control(IO_BUS, IOCTL_BUS_CONNECT_BUS, bus, conn); + assert(ret == EOK && *conn); + return EOK; +} + +res msg_connect_conn(u32 conn) +{ + res ret = io_control(IO_BUS, IOCTL_BUS_CONNECT_CONN, conn); + assert(ret == EOK); + return ret; +} + +res msg_send(enum message_type type, void *data, u32 size) { - assert((signed)pid != -1 && size >= sizeof(struct message_header)); - char path[32] = { 0 }; - snprintf(path, sizeof(path), "/proc/%d/msg", pid); + assert(size >= sizeof(struct message_header)); struct message_header *header = data; header->magic = MSG_MAGIC; - header->src = getpid(); header->type = type; - return write(path, data, 0, size); + res ret = io_write(IO_BUS, (u8 *)data + sizeof(struct bus_header), 0, size); + assert(ret >= EOK); + return ret; } res msg_receive(void *buf, u32 size) { - int ret = read("/proc/self/msg", buf, 0, size); + res ret = io_read(IO_BUS, buf, 0, size); struct message_header *header = buf; if (header->magic == MSG_MAGIC) return ret; else - return -1; + return -EINVAL; } diff --git a/libs/libgui/msg.h b/libs/libgui/msg.h index c25e95e..857042c 100644 --- a/libs/libgui/msg.h +++ b/libs/libgui/msg.h @@ -5,6 +5,7 @@ #include <def.h> #include <libgui/gfx.h> +#include <sys.h> #define MSG_PING_SEND 0x07734 #define MSG_PING_RECV 0x7474 @@ -19,8 +20,8 @@ enum message_state { }; struct message_header { + struct bus_header bus; u32 magic; - u32 src; u32 type; enum message_state state; }; @@ -66,7 +67,9 @@ enum message_type { GUI_KEYBOARD, }; -res msg_send(u32 pid, enum message_type type, void *data, u32 size) NONNULL; +res msg_connect_bus(const char *bus, u32 *conn); +res msg_connect_conn(u32 conn); +res msg_send(enum message_type type, void *data, u32 size) NONNULL; res msg_receive(void *buf, u32 size) NONNULL; #endif |