Skip to content

Sync Dev#12

Open
tas0dev wants to merge 477 commits intomainfrom
dev
Open

Sync Dev#12
tas0dev wants to merge 477 commits intomainfrom
dev

Conversation

@tas0dev
Copy link
Copy Markdown
Owner

@tas0dev tas0dev commented May 4, 2026

概要 / Summary

関連タスク / Related Tasks

スクリーンショット / Screenshots

備考 / Notes

minto-dane and others added 30 commits March 4, 2026 03:34
Co-authored-by: minto-dane <205936182+minto-dane@users.noreply.github.com>
Co-authored-by: minto-dane <205936182+minto-dane@users.noreply.github.com>
Co-authored-by: minto-dane <205936182+minto-dane@users.noreply.github.com>
Harden critical memory-validation paths found in exhaustive manual review
dev: セキュリティ基盤強化・Linux互換syscall拡張
…があったのでyield_nowをwithout_interruptsブロック内に移動し、Continueの場合のみyieldを実行するように修正
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 4, 2026

Important

Review skipped

Too many files!

This PR contains 240 files, which is 90 over the limit of 150.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 3ee9aaba-2212-4f51-96d8-f2602a8efa6b

📥 Commits

Reviewing files that changed from the base of the PR and between 887e5bf and de967e2.

⛔ Files ignored due to path filters (3)
  • Cargo.lock is excluded by !**/*.lock
  • src/resources/system/fonts/NotoSansJP-Regular.ttf is excluded by !**/*.ttf
  • src/resources/system/mochimochi-kun.png is excluded by !**/*.png
📒 Files selected for processing (240)
  • .cargo/config.toml
  • .cargo/config_link.toml
  • .github/ISSUE_TEMPLATE/バグの報告.md
  • .github/ISSUE_TEMPLATE/機能の提案.md
  • .github/PULL_REQUEST_TEMPLATE.md
  • .github/copilot-instructions.md
  • .gitignore
  • .gitmodules
  • .vscode/settings.json
  • CODE_OF_CONDUCT.md
  • Cargo.toml
  • LICENSE
  • README.md
  • arch.md
  • build.rs
  • builders/apps.rs
  • builders/drivers.rs
  • builders/fs_image.rs
  • builders/mod.rs
  • builders/modules.rs
  • builders/newlib.rs
  • builders/services.rs
  • builders/utils.rs
  • config.toml
  • contributors.md
  • panic.md
  • qodana.yaml
  • rust-toolchain.toml
  • scripts/autoinstall.sh
  • scripts/build-user-elf.sh
  • scripts/configure.sh
  • scripts/create_iso.sh
  • scripts/make-uefi-boot.sh
  • scripts/make_image.sh
  • scripts/qemu-runner.sh
  • scripts/requirements.sh
  • scripts/test_elf.sh
  • scripts/write_iso.sh
  • src/apps/Binder
  • src/apps/Dock
  • src/apps/Kagami
  • src/apps/ViewKit
  • src/boot/loader.rs
  • src/boot/vga_console.rs
  • src/core/.cargo/config.toml
  • src/core/Cargo.toml
  • src/core/audit.rs
  • src/core/core_build.rs
  • src/core/cpu.rs
  • src/core/elf/loader.rs
  • src/core/elf/mod.rs
  • src/core/entry.rs
  • src/core/init/fs.rs
  • src/core/init/mod.rs
  • src/core/interrupt/idt.rs
  • src/core/interrupt/mod.rs
  • src/core/interrupt/pic.rs
  • src/core/interrupt/spinlock.rs
  • src/core/interrupt/syscall.rs
  • src/core/interrupt/timer.rs
  • src/core/kernel.ld
  • src/core/kernel.rs
  • src/core/kmod/disk.rs
  • src/core/kmod/fs.rs
  • src/core/kmod/mod.rs
  • src/core/lib.rs
  • src/core/mem/allocator.rs
  • src/core/mem/frame.rs
  • src/core/mem/gdt.rs
  • src/core/mem/mod.rs
  • src/core/mem/paging.rs
  • src/core/mem/tss.rs
  • src/core/mem/user.rs
  • src/core/panic.rs
  • src/core/percpu.rs
  • src/core/result.rs
  • src/core/syscall/console.rs
  • src/core/syscall/exec.rs
  • src/core/syscall/fs.rs
  • src/core/syscall/io.rs
  • src/core/syscall/io_port.rs
  • src/core/syscall/ipc.rs
  • src/core/syscall/keyboard.rs
  • src/core/syscall/linux.rs
  • src/core/syscall/mmio.rs
  • src/core/syscall/mod.rs
  • src/core/syscall/mouse.rs
  • src/core/syscall/pgroup.rs
  • src/core/syscall/pipe.rs
  • src/core/syscall/privileged.rs
  • src/core/syscall/process.rs
  • src/core/syscall/signal.rs
  • src/core/syscall/syscall_entry.rs
  • src/core/syscall/task.rs
  • src/core/syscall/time.rs
  • src/core/syscall/tty.rs
  • src/core/syscall/types.rs
  • src/core/syscall/vga.rs
  • src/core/task/context.rs
  • src/core/task/elf.rs
  • src/core/task/fd_table.rs
  • src/core/task/ids.rs
  • src/core/task/mod.rs
  • src/core/task/process.rs
  • src/core/task/scheduler.rs
  • src/core/task/signal.rs
  • src/core/task/thread.rs
  • src/core/task/usermode.rs
  • src/core/util/console.rs
  • src/core/util/fifo.rs
  • src/core/util/log.rs
  • src/core/util/mod.rs
  • src/core/util/ps2kbd.rs
  • src/core/util/ps2mouse.rs
  • src/core/util/vga.rs
  • src/drivers/net/.cargo/config.toml
  • src/drivers/net/Cargo.toml
  • src/drivers/net/build.rs
  • src/drivers/net/linker.ld
  • src/drivers/net/src/main.rs
  • src/drivers/net/src/main_refactored.rs
  • src/drivers/net/src/net_common.rs
  • src/drivers/net/src/pci.rs
  • src/drivers/net/src/util.rs
  • src/drivers/net/src/virtio.rs
  • src/drivers/usb/.cargo/config.toml
  • src/drivers/usb/Cargo.toml
  • src/drivers/usb/build.rs
  • src/drivers/usb/linker.ld
  • src/drivers/usb/src/define.rs
  • src/drivers/usb/src/hid.rs
  • src/drivers/usb/src/main.rs
  • src/error.rs
  • src/interrupt/idt.rs
  • src/kernel.rs
  • src/lib
  • src/linker.ld
  • src/mem/frame.rs
  • src/mem/gdt.rs
  • src/mem/mod.rs
  • src/mem/paging.rs
  • src/mem/tss.rs
  • src/modules/disk/.cargo/config.toml
  • src/modules/disk/Cargo.toml
  • src/modules/disk/src/main.rs
  • src/modules/fs/.cargo/config.toml
  • src/modules/fs/Cargo.toml
  • src/modules/fs/src/main.rs
  • src/posix/Cargo.toml
  • src/posix/src/lib.rs
  • src/posix/src/main.rs
  • src/resources/config/env.txt
  • src/resources/system/about.txt
  • src/resources/system/fonts/OFL.TXT
  • src/resources/system/fonts/OFL.txt
  • src/resources/system/fonts/ter-u12b.bdf
  • src/resources/system/images/.gitignore
  • src/services/build.rs
  • src/services/core/.cargo/config.toml
  • src/services/core/.gitignore
  • src/services/core/Cargo.toml
  • src/services/core/build.rs
  • src/services/core/linker.ld
  • src/services/core/src/main.rs
  • src/services/driver/.cargo/config.toml
  • src/services/driver/Cargo.toml
  • src/services/driver/build.rs
  • src/services/driver/linker.ld
  • src/services/driver/src/main.rs
  • src/services/index.toml
  • src/services/shell/.cargo/config.toml
  • src/services/shell/.gitignore
  • src/services/shell/Cargo.toml
  • src/services/shell/build.rs
  • src/services/shell/linker.ld
  • src/services/shell/src/char.rs
  • src/services/shell/src/keyboard.rs
  • src/services/shell/src/main.rs
  • src/task/mod.rs
  • src/user/Cargo.toml
  • src/user/console.rs
  • src/user/crt.rs
  • src/user/fs.rs
  • src/user/fs_consts.rs
  • src/user/gfx.rs
  • src/user/input.rs
  • src/user/io.rs
  • src/user/ipc.rs
  • src/user/keyboard.rs
  • src/user/lib.rs
  • src/user/libc.rs
  • src/user/linker.ld
  • src/user/mmio.rs
  • src/user/mouse.rs
  • src/user/newlib.rs
  • src/user/port.rs
  • src/user/posix_stubs.rs
  • src/user/privileged.rs
  • src/user/process.rs
  • src/user/stub.rs
  • src/user/sys.rs
  • src/user/task.rs
  • src/user/time.rs
  • src/user/vga.rs
  • src/util/vga.rs
  • src/utils/.cargo/config.toml
  • src/utils/Cargo.toml
  • src/utils/src/bin/basename.rs
  • src/utils/src/bin/cat.rs
  • src/utils/src/bin/clear.rs
  • src/utils/src/bin/cmp.rs
  • src/utils/src/bin/cp.rs
  • src/utils/src/bin/cut.rs
  • src/utils/src/bin/date.rs
  • src/utils/src/bin/dirname.rs
  • src/utils/src/bin/echo.rs
  • src/utils/src/bin/false.rs
  • src/utils/src/bin/grep.rs
  • src/utils/src/bin/head.rs
  • src/utils/src/bin/ls.rs
  • src/utils/src/bin/mkdir.rs
  • src/utils/src/bin/ps.rs
  • src/utils/src/bin/pwd.rs
  • src/utils/src/bin/rm.rs
  • src/utils/src/bin/seq.rs
  • src/utils/src/bin/sleep.rs
  • src/utils/src/bin/tail.rs
  • src/utils/src/bin/touch.rs
  • src/utils/src/bin/tr.rs
  • src/utils/src/bin/true.rs
  • src/utils/src/bin/uniq.rs
  • src/utils/src/bin/wc.rs
  • src/utils/src/bin/which.rs
  • src/utils/src/bin/yes.rs
  • src/x86_64-mochios.json
  • todo.md
  • tools/msig/.cargo/config.toml
  • tools/msig/Cargo.toml
  • tools/msig/src/main.rs
  • x86_64-mochios.json

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Tip

💬 Introducing Slack Agent: The best way for teams to turn conversations into code.

Slack Agent is built on CodeRabbit's deep understanding of your code, so your team can collaborate across the entire SDLC without losing context.

  • Generate code and open pull requests
  • Plan features and break down work
  • Investigate incidents and troubleshoot customer tickets together
  • Automate recurring tasks and respond to alerts with triggers
  • Summarize progress and report instantly

Built for teams:

  • Shared memory across your entire org—no repeating context
  • Per-thread sandboxes to safely plan and execute work
  • Governance built-in—scoped access, auditability, and budget controls

One agent for your entire SDLC. Right inside Slack.

👉 Get started


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

tas0dev added 21 commits May 4, 2026 14:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants