Files
LithosAnanake/include/starkernel/session.h
T
Robert Allan JamesandClaude Opus 5 6d9fe3f515 §H.12 step 2: session-slot table, session_find/session_register
src/starkernel/vm/session.c: kmalloc'd-at-boot slot table sized from
stadium_max_vm_count() (mirrors stadium.c's own StadiumVMQuota, not a
fixed compile-time array as originally planned -- that table was already
moved off a fixed array for the same "population isn't knowable in
advance" reason). session_boot_init()/session_find()/session_register()
implemented for real, no stubs; session_register() zeroes identity and
leaves pinned=0, matching VMIdentity's own documented default and
deferring pin policy to callers. Added session.c to Makefile.starkernel's
explicit source lists. No callers yet.

Verified 3-arch boot to ok> (amd64/aarch64/riscv64).

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-03 06:03:14 -04:00

130 lines
5.6 KiB
C
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
StarForth — Steady-State Virtual Machine Runtime
Copyright (c) 20232025 Robert A. James
All rights reserved.
This file is part of the StarForth project.
Licensed under the StarForth License, Version 1.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at:
https://github.com/star.4th@proton.me/StarForth/LICENSE.txt
This software is provided "AS IS", WITHOUT WARRANTY OF ANY KIND,
express or implied, including but not limited to the warranties of
merchantability, fitness for a particular purpose, and noninfringement.
See the License for the specific language governing permissions and
limitations under the License.
*/
/**
* session.h - Per-VM session (FABRIC-3.md §H, decided 2026-09-02/03)
*
* A session is a Stadium patron (FABRIC-3.md §H.1) -- registering a session
* IS admitting a patron to the Stadium, not a new parallel bookkeeping
* structure. This struct is the piece that sits ALONGSIDE the patron,
* referencing it by VMUuid rather than being indexed by Stadium cell index
* or grown as inline fields on StadiumPatronHeader/struct VM (deliberately
* its own header, mirroring VMUuid's/VMIdentity's own precedent -- standing
* instruction: give real-shaped data its own header and integrate as a
* field, don't grow existing structs ad hoc).
*
* Fields (FABRIC-3.md §H.2, all five confirmed 2026-09-02/03):
* vm_id -- the patron this session references.
* pinned -- session is AUTHORITATIVE over Stadium's STADIUM_FLAG_PIN
* bit (§H.10): the sole read/write path for pin state is
* session_set_pinned()/session_is_pinned() below, nothing
* else (including existing Stadium code) may touch
* STADIUM_FLAG_PIN directly.
* parent -- who birthed this session (Hera -> Hermes/Artemis, etc).
* name -- canonical human-readable name; feeds console.c's
* g_active_vm_name prefix, does not replace the
* console-binding mechanism itself.
* identity -- embedded VMIdentity (FABRIC-3.md §H.4's VM card is
* effectively VMIdentity's existing ownership check; reused
* directly here, not reinvented).
*
* Explicit user framing (2026-09-02), still true: "we're gonna be
* revisiting this part of it around and around for a while" -- treat this
* shape as a live working draft, not permanently locked.
*/
#ifndef STARKERNEL_SESSION_H
#define STARKERNEL_SESSION_H
#ifdef __STARKERNEL__
#include <stdint.h>
#include "starkernel/vm_uuid.h"
#include "starkernel/vm_identity.h"
/* Matches console.c's CONSOLE_VM_NAME_BUF precedent -- same order of
* magnitude for the same kind of data (a short human-readable VM name). */
#define SESSION_NAME_BUF 64
typedef struct {
VMUuid vm_id; /* the patron this session references */
int pinned; /* authoritative over STADIUM_FLAG_PIN; see
* session_set_pinned()/session_is_pinned() */
VMUuid parent; /* who birthed this session */
char name[SESSION_NAME_BUF]; /* canonical human-readable name */
VMIdentity identity; /* embedded, not referenced -- see vm_identity.h */
} Session;
/*
* session_boot_init - Boot-time allocation, mirroring stadium_boot_init()'s
* own kmalloc-sized-from-budget shape rather than a fixed compile-time
* array (stadium.c's own StadiumVMQuota table was moved off a fixed array
* for the same reason -- population isn't knowable in advance). Must run
* after stadium_boot_init() (session slot count is sized from
* stadium_max_vm_count()) and before the first session is registered.
* No callers yet (§H.12 step 2) -- wiring into the boot sequence happens
* in a later punch-list step.
*
* @return 0 on success, -1 if kmalloc failed or stadium_max_vm_count() is 0
* (Stadium not yet initialized).
*/
int session_boot_init(void);
/*
* session_find - Look up a session by the VMUuid of the patron it
* references. Linear scan, same shape as stadium.c's own
* quota_slot_for_vm() -- the population this searches is small (one entry
* per VM, not per word/block).
*
* @return Pointer to the live session, or NULL if none is registered for
* vm_id.
*/
Session *session_find(VMUuid vm_id);
/*
* session_register - Register a new session for vm_id. identity starts
* zeroed (VMIdentity's own documented default: installed=0, "no lock,
* allow freely" -- §H.12 Correction 2). pinned starts 0 (unpinned); use
* session_set_pinned() separately to pin, keeping this function's job to
* "create the session record" only, not "create and also decide pin
* policy" -- callers (e.g. the capsule-birth admission path, §H.12 phase 2)
* decide pinning themselves.
*
* @param vm_id The patron this session references. Must not already have
* a registered session (session_find(vm_id) must be NULL).
* @param parent Who birthed this session (vm_uuid_hera() for Hera's own
* self-registration -- self-referential, matching the
* existing parent_vm_id convention documented in
* capsule_run.h).
* @param name Copied into the new session's name buffer, truncated to
* SESSION_NAME_BUF - 1 if longer.
* @return Pointer to the new session, or NULL if the slot table is full,
* not yet initialized, or vm_id is already registered.
*/
Session *session_register(VMUuid vm_id, VMUuid parent, const char *name);
#endif /* __STARKERNEL__ */
#endif /* STARKERNEL_SESSION_H */