Skip to content

update tbox to fix tolower/toupper#7318

Merged
waruqi merged 1 commit intodevfrom
string
Feb 12, 2026
Merged

update tbox to fix tolower/toupper#7318
waruqi merged 1 commit intodevfrom
string

Conversation

@waruqi
Copy link
Member

@waruqi waruqi commented Feb 12, 2026

@waruqi waruqi added this to the v3.0.8 milestone Feb 12, 2026
@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @waruqi, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request primarily focuses on resolving issues with tolower and toupper string conversion functions by updating the tbox subproject. The update brings in necessary fixes from the dependency, ensuring more robust and accurate case transformations within the system.

Highlights

  • tbox Subproject Update: The tbox subproject has been updated to a newer commit (ef851bcb6589b6092f5bd3fca4625631237f9bdd) from an older one (766ccfcbbdb28ed14a4a3e8babd573fc32a4d034).
  • tolower/toupper Fix: This update is specifically intended to address and fix issues related to tolower and toupper functionality, improving string case conversion reliability.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • core/src/tbox/tbox
    • Updated the tbox subproject reference to a newer commit.
  • core/src/xmake/string/lower.c
    • Removed an unnecessary blank line in the xm_string_lower function.
Activity
  • No specific activity (comments, reviews, or progress updates) has been recorded for this pull request yet.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the tbox submodule to fix issues with tolower and toupper functions. However, a critical security vulnerability has been identified: the xm_string_lower function in core/src/xmake/string/lower.c contains a heap-based buffer overflow. This is due to an incorrect assumption that lowercased UTF-8 strings will always fit within the same byte length as the original, which is not universally true for Unicode characters. Additionally, a minor whitespace cleanup was performed in core/src/xmake/string/lower.c.

// to lower
tb_long_t real_size = tb_charset_utf8_tolower(buffer, size);

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security-high high

The buffer buffer is allocated with size + 1 bytes (line 55), which is sufficient for ASCII but not for all UTF-8 characters. Some characters can increase in byte length when converted to lowercase (e.g., Ⱥ (U+023A, 2 bytes) becomes (U+2C65, 3 bytes)). The call to tb_charset_utf8_tolower(buffer, size) on line 61 does not take a capacity argument and will write past the end of the buffer if the resulting string is longer than the input. This is a heap-based buffer overflow.

To fix this, allocate a larger buffer that can accommodate the maximum possible growth (e.g., size * 2 + 1) or use a dynamic buffer.

@waruqi waruqi merged commit 738cd38 into dev Feb 12, 2026
68 of 69 checks passed
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.

1 participant