Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpftool unpin#1 #8

Closed

Conversation

vpidatala94
Copy link

@vpidatala94 vpidatala94 commented Mar 26, 2025

adding unpin functionality to bpftool

Summary by CodeRabbit

  • New Features
    • Introduced a new command that enables users to remove (unpin) items by specifying their path.
    • The updated command provides clear error feedback and supports JSON output when enabled.

Copy link

coderabbitai bot commented Mar 26, 2025

Walkthrough

This update introduces two new functions. In src/common.c, the function do_unpin_path is added to unpin objects by calling ebpf_object_unpin and logging an error if needed. In src/map.c, the new function do_unpin processes command-line arguments for unpin requests, validates the input, invokes do_unpin_path, and outputs a null JSON value when appropriate. Additionally, an "unpin" command is registered in the commands array linking to the do_unpin function.

Changes

File Change Summary
src/common.c Added the function do_unpin_path(const char *path) which calls ebpf_object_unpin, logs errors via p_err, and returns the error code.
src/map.c Added the function do_unpin(int argc, char **argv) that validates a single argument, calls do_unpin_path, outputs JSON on success, and registers the "unpin" command in the cmds array.

Sequence Diagram(s)

sequenceDiagram
    participant U as User
    participant M as Map (do_unpin)
    participant C as Common (do_unpin_path)
    participant E as ebpf_object_unpin
    participant L as Logger (p_err)

    U->>M: Invoke "unpin" command with path
    M->>M: Validate argument count
    M->>C: Call do_unpin_path(path)
    C->>E: Call ebpf_object_unpin(path)
    E-->>C: Return error code (err)
    alt Error occurred (err != 0)
        C->>L: Log error with p_err (includes strerror(errno))
    end
    C-->>M: Return err
    alt No error and json_output enabled
        M->>U: Output null JSON value via jsonw_null
    end
Loading

Poem

I hop through lines of code with glee,
Unpinning paths so effortlessly.
With errors logged in every byte,
My rabbit paws keep functions light.
A joyful leap in code tonight! 🐇✨

✨ Finishing Touches
  • 📝 Generate Docstrings

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
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🔭 Outside diff range comments (1)
src/map.c (1)

1443-1481: 🛠️ Refactor suggestion

The unpin command is missing from the help text.

The new unpin command should be added to the help text to ensure users are aware of this functionality.

 	fprintf(stderr,
 		"Usage: %1$s %2$s { show | list }   [MAP]\n"
 		"       %1$s %2$s create     FILE type TYPE key KEY_SIZE value VALUE_SIZE \\\n"
 		"                                  entries MAX_ENTRIES name NAME [flags FLAGS] \\\n"
 		"                                  [inner_map MAP] [dev NAME]\n"
 		"       %1$s %2$s dump       MAP\n"
 		"       %1$s %2$s update     MAP [key DATA] [value VALUE] [UPDATE_FLAGS]\n"
 		"       %1$s %2$s lookup     MAP [key DATA]\n"
 		"       %1$s %2$s getnext    MAP [key DATA]\n"
 		"       %1$s %2$s delete     MAP  key DATA\n"
 		"       %1$s %2$s pin        MAP  FILE\n"
+		"       %1$s %2$s unpin      FILE\n"
 		"       %1$s %2$s event_pipe MAP [cpu N index M]\n"
 		"       %1$s %2$s peek       MAP\n"
 		"       %1$s %2$s push       MAP value VALUE\n"
 		"       %1$s %2$s pop        MAP\n"
 		"       %1$s %2$s enqueue    MAP value VALUE\n"
 		"       %1$s %2$s dequeue    MAP\n"
 		"       %1$s %2$s freeze     MAP\n"
 		"       %1$s %2$s help\n"
🧹 Nitpick comments (1)
src/map.c (1)

1230-1240: Indentation inconsistency with the rest of the codebase.

The function looks good functionally, but the indentation uses 4 spaces while the rest of the file uses tabs. This creates inconsistency in the code style.

-static int do_unpin(int argc, char **argv)
-{
-    int err;
-    if (argc != 1) { // Expect exactly one argument: the pinned file path
-        return BAD_ARG();
-    }
-    err = do_unpin_path(*argv);
-    if (!err && json_output)
-        jsonw_null(json_wtr);
-    return err;
-}
+static int do_unpin(int argc, char **argv)
+{
+	int err;
+	if (argc != 1) { // Expect exactly one argument: the pinned file path
+		return BAD_ARG();
+	}
+	err = do_unpin_path(*argv);
+	if (!err && json_output)
+		jsonw_null(json_wtr);
+	return err;
+}
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between ee48503 and c79aab0.

📒 Files selected for processing (2)
  • src/common.c (1 hunks)
  • src/map.c (2 hunks)
🧰 Additional context used
🧬 Code Definitions (2)
src/common.c (1)
src/main.h (1)
  • p_err (89-89)
src/map.c (4)
src/main.h (1)
  • argc (131-131)
src/common.c (1)
  • do_unpin_path (283-292)
src/json_writer.h (1)
  • jsonw_null (47-47)
src/json_writer.c (1)
  • jsonw_null (212-215)
🔇 Additional comments (2)
src/common.c (1)

283-292: LGTM! The unpin function implementation looks clean and follows the codebase's error handling pattern.

The function correctly handles errors and provides a meaningful error message using p_err() with strerror(errno) to show the actual reason for failure.

src/map.c (1)

1493-1493: LGTM! Command registration looks good.

The command is properly registered in the commands array, making it available for users.

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