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

Uplift clippy::invalid_null_ptr_usage lint as invalid_null_arguments #119220

Merged
merged 5 commits into from
Mar 31, 2025

Conversation

Urgau
Copy link
Member

@Urgau Urgau commented Dec 22, 2023

This PR aims at uplifting the clippy::invalid_null_ptr_usage lint into rustc, this is similar to the clippy::invalid_utf8_in_unchecked uplift a few months ago, in the sense that those two lints lint on invalid parameter(s), here a null pointer where it is unexpected and UB to pass one.

For context: GitHub Search reveals that just for slice::from_raw_parts{_mut} ~20 invalid usages with ptr::null and an additional 4 invalid usages with 0 as *const ...-ish casts.


invalid_null_arguments

(deny-by-default)

The invalid_null_arguments lint checks for invalid usage of null pointers.

Example

// Undefined behavior
unsafe { std::slice::from_raw_parts(ptr::null(), 1); }

Produces:

error: calling this function with a null pointer is Undefined Behavior, even if the result of the function is unused
  --> $DIR/invalid_null_args.rs:21:23
   |
LL |     let _: &[usize] = std::slice::from_raw_parts(ptr::null_mut(), 0);
   |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^---------------^^^^
   |                                                  |
   |                                                  null pointer originates from here
   |
   = help: for more information, visit <https://doc.rust-lang.org/std/ptr/index.html> and <https://doc.rust-lang.org/reference/behavior-considered-undefined.html>

Explanation

Calling methods whose safety invariants requires non-null pointer with a null pointer is undefined behavior.


The lint use a list of functions to know which functions and arguments to checks, this could be improved in the future with a rustc attribute, or maybe even with a #[diagnostic] attribute.

This PR also includes some small refactoring to avoid some ambiguities in naming, those can be done in another PR is desired.

@rustbot label: +I-lang-nominated
r? compiler

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Dec 22, 2023
@rustbot
Copy link
Collaborator

rustbot commented Dec 22, 2023

Some changes occurred in src/tools/clippy

cc @rust-lang/clippy

@rustbot rustbot added the I-lang-nominated Nominated for discussion during a lang team meeting. label Dec 22, 2023
@rust-log-analyzer

This comment has been minimized.

@Urgau Urgau force-pushed the uplift-invalid_null_ptr_usage branch 2 times, most recently from b25c44c to 7308419 Compare December 22, 2023 16:07
@rust-log-analyzer

This comment has been minimized.

@Urgau Urgau force-pushed the uplift-invalid_null_ptr_usage branch from 7308419 to 05aabc1 Compare December 22, 2023 16:44
@Noratrieb
Copy link
Member

I think @saethlin has also found plenty of code that hits this in the wild, so this seems like a good lint.

@saethlin
Copy link
Member

You're probably referring to PyO3/pyo3#2687 and servo/font-kit#197

I don't think either of these would be detected by the lint, but I agree that this is a reasonable lint target.

@apiraino apiraino added S-waiting-on-team Status: Awaiting decision from the relevant subteam (see the T-<team> label). and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Feb 1, 2024
@apiraino
Copy link
Contributor

apiraino commented Feb 1, 2024

I'll flag this as S-waiting-on-team to signal that T-lang nomination

@bors
Copy link
Collaborator

bors commented Feb 13, 2024

☔ The latest upstream changes (presumably #120991) made this pull request unmergeable. Please resolve the merge conflicts.

@scottmcm
Copy link
Member

(Just me, with my lang hat on but not talking for the team.)

I wish there was an easier way for these to get added without waiting on us.

Would you be interested in making a proposal of some sort for making maybe a diagnostics::something_or_other that could be used on functions or parameters to let warnings like this be something that functions can opt into themselves.

It'd be great if, rather than lang needing to approve stuff, it'd just be T-libs PR approving a #[diagnostics::ub_if(ptr.is_null())] or something like that. And eventually we could stabilize that to let crates use them too, to get built-in lints on stuff without needing rustc or clippy needing to know that the random crates even need to know exist.

@Centri3
Copy link
Member

Centri3 commented Jun 26, 2024

That feels similar to what flux and verus are doing but at a smaller scale. Unsure about allowing downstream users to access it but it'd be great to make these kinds of checks more prevalent (and not just for null ptr cases)

@Centri3
Copy link
Member

Centri3 commented Jun 26, 2024

I do like refinement types. We should discuss this further, I love the idea of rust expanding its sights of correctness to this, rather than a devtool (what flux does atm)

@Urgau
Copy link
Member Author

Urgau commented Jun 28, 2024

I would if there was an easier way to add those kind of lints. Using the diagnostics namespace is also something I alluded in my top comment, and I think that it's something that should probably be pushed forward, the only thing that is a bit weird is that I had the impression that the diagnostics attribute would not by it-self create a diagnostic but is only here to accompany one.

It'd be great if, rather than lang needing to approve stuff, it'd just be T-libs PR approving a #[diagnostics::ub_if(ptr.is_null())] or something like that.

That would be awesome, I would love if it were this "simple".

I can write something akin to an MCP (for t-lang) but I don't have the time for a full RFC :-)

@jieyouxu

This comment was marked as outdated.

@Urgau
Copy link
Member Author

Urgau commented Mar 6, 2025

@traviscross It's been more than a year since I nominated this PR for T-lang, I know it's not high priority/high in the list, and I don't mind waiting, but it's becoming annoying to maintain these kind of PR. This one in particular has nearly all modified files in conflict.

Is this something T-lang would accept? Is there a way to gather consensus outside of a nomination? If not I rather close this PR than continue to waste my time maintaining this PR.

@rustbot rustbot added the I-lang-easy-decision Issue: The decision needed by the team is conjectured to be easy; this does not imply nomination label Mar 6, 2025
@traviscross traviscross added T-lang Relevant to the language team, which will review and decide on the PR/issue. and removed T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Mar 6, 2025
@traviscross
Copy link
Contributor

Thanks @Urgau for the ping on this one. Looking at this now carefully, we should move this one forward. I propose:

@rfcbot fcp merge

And I think this is probably a clear call for us, so let's collect checkboxes in the next meeting if it's still outstanding:

@rustbot labels +I-lang-easy-decision

@rfcbot
Copy link
Collaborator

rfcbot commented Mar 6, 2025

Team member @traviscross has proposed to merge this. The next step is review by the rest of the tagged team members:

Concerns:

Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up!

cc @rust-lang/lang-advisors: FCP proposed for lang, please feel free to register concerns.
See this document for info about what commands tagged team members can give me.

@rfcbot rfcbot added proposed-final-comment-period Proposed to merge/close by relevant subteam, see T-<team> label. Will enter FCP once signed off. disposition-merge This issue / PR is in PFCP or FCP with a disposition to merge it. labels Mar 6, 2025
@traviscross
Copy link
Contributor

Anyone have a better suggestion for the lint name than invalid_null_ptr_usages? I think it's the word "usages" that I want rid of somehow.

@Urgau Urgau added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Mar 30, 2025
Copy link
Member

@fee1-dead fee1-dead left a comment

Choose a reason for hiding this comment

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

nice, I had a few final nits and this should be good to go afterwards

|
= help: for more information, visit <https://doc.rust-lang.org/std/ptr/index.html> and <https://doc.rust-lang.org/reference/behavior-considered-undefined.html>

error: calling this function with a null pointer is Undefined Behavior, even if the result of the function is unused
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
error: calling this function with a null pointer is Undefined Behavior, even if the result of the function is unused
error: it is undefined behavior to call this function with a null pointer, even if the result of the function is unused

We already have a diagnostic that says "it is undefined behavior to use this value", so making this follow that format feels nicer to me. Also we don't capitalize UB in diagnostics so we should follow that: https://github.com/search?q=repo%3Arust-lang%2Frust+undefined+behavior+path%3Atests%2Fui&type=code

Copy link
Member Author

Choose a reason for hiding this comment

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

We also have diagnostics of the form I used.

As for Undefined Behavior being capitalized I took this style from miri in their diagnostics.

Copy link
Member

Choose a reason for hiding this comment

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

Keeping the form you used is fine, I'd still want it to not be capitalized. This is a rustc lint so it should follow what rustc uses. (We really should have a large whole-project discussion on this though, just to see if we may find a consensus)

Copy link
Contributor

Choose a reason for hiding this comment

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

I think I convinced RalfJ that "undefined behavior" should not be capitalized (just as we don't capitalize "race condition") -- and he later updated the Reference accordingly -- but prior to that, he had capitalized it in a lot of places (like Miri), and those haven't all been updated yet.

As a stylistic matter in the Reference, we write "undefined behavior". I push the text in lang RFCs this direction as well.

@rustbot rustbot added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Mar 30, 2025
@Urgau Urgau force-pushed the uplift-invalid_null_ptr_usage branch from c82c601 to 6f2c561 Compare March 30, 2025 16:14
@Urgau Urgau added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Mar 30, 2025
@fee1-dead
Copy link
Member

r=me after the diagnostic is recapitalized to undefined behavior

@Urgau Urgau force-pushed the uplift-invalid_null_ptr_usage branch from 6f2c561 to aa88480 Compare March 30, 2025 17:33
@Urgau
Copy link
Member Author

Urgau commented Mar 30, 2025

@bors r=@fee1-dead

@bors
Copy link
Collaborator

bors commented Mar 30, 2025

📌 Commit aa88480 has been approved by fee1-dead

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Mar 30, 2025
@bors
Copy link
Collaborator

bors commented Mar 31, 2025

⌛ Testing commit aa88480 with merge 7bfd952...

@bors
Copy link
Collaborator

bors commented Mar 31, 2025

☀️ Test successful - checks-actions
Approved by: fee1-dead
Pushing 7bfd952 to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label Mar 31, 2025
@bors bors merged commit 7bfd952 into rust-lang:master Mar 31, 2025
7 checks passed
@rustbot rustbot added this to the 1.88.0 milestone Mar 31, 2025
Copy link

What is this? This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.

Comparing 3c0f722 (parent) -> 7bfd952 (this PR)

Test differences

Show 225 test diffs

Stage 1

  • lints::verify_lint_atomic_ordering_fence_89: pass -> [missing] (J0)
  • lints::verify_lint_atomic_ordering_fence_91: [missing] -> pass (J0)
  • lints::verify_lint_atomic_ordering_load_89: [missing] -> pass (J0)
  • lints::verify_lint_atomic_ordering_store_90: [missing] -> pass (J0)
  • lints::verify_lint_avoid_att_syntax_113: [missing] -> pass (J0)
  • lints::verify_lint_cfg_attr_no_attributes_115: pass -> [missing] (J0)
  • lints::verify_lint_custom_inner_attribute_unstable_124: pass -> [missing] (J0)
  • lints::verify_lint_dangling_pointers_from_temporaries_69: pass -> [missing] (J0)
  • lints::verify_lint_default_hash_types_51: pass -> [missing] (J0)
  • lints::verify_lint_deprecated_lint_name_66: pass -> [missing] (J0)
  • lints::verify_lint_deprecated_lint_name_68: [missing] -> pass (J0)
  • lints::verify_lint_diag_out_of_impl_63: pass -> [missing] (J0)
  • lints::verify_lint_diag_out_of_impl_65: [missing] -> pass (J0)
  • lints::verify_lint_duplicate_matcher_binding_119: pass -> [missing] (J0)
  • lints::verify_lint_extern_without_abi_130: [missing] -> pass (J0)
  • lints::verify_lint_hidden_glob_reexport_142: pass -> [missing] (J0)
  • lints::verify_lint_identifier_uncommon_codepoints_74: [missing] -> pass (J0)
  • lints::verify_lint_ignored_unless_crate_specified_68: pass -> [missing] (J0)
  • lints::verify_lint_ignored_unless_crate_specified_70: [missing] -> pass (J0)
  • lints::verify_lint_ill_formed_attribute_input_122: pass -> [missing] (J0)
  • lints::verify_lint_ill_formed_attribute_input_124: [missing] -> pass (J0)
  • lints::verify_lint_incomplete_include_114: [missing] -> pass (J0)
  • lints::verify_lint_inner_macro_attribute_unstable_123: pass -> [missing] (J0)
  • lints::verify_lint_inner_macro_attribute_unstable_125: [missing] -> pass (J0)
  • lints::verify_lint_invalid_asm_label_binary_101: pass -> [missing] (J0)
  • lints::verify_lint_invalid_asm_label_binary_103: [missing] -> pass (J0)
  • lints::verify_lint_invalid_asm_label_format_arg_100: pass -> [missing] (J0)
  • lints::verify_lint_invalid_asm_label_named_101: [missing] -> pass (J0)
  • lints::verify_lint_invalid_from_utf8_checked_46: pass -> [missing] (J0)
  • lints::verify_lint_invalid_reference_casting_bigger_layout_49: pass -> [missing] (J0)
  • lints::verify_lint_invalid_reference_casting_bigger_layout_51: [missing] -> pass (J0)
  • lints::verify_lint_invalid_reference_casting_borrow_as_mut_49: [missing] -> pass (J0)
  • lints::verify_lint_legacy_derive_helpers_131: [missing] -> pass (J0)
  • lints::verify_lint_lintpass_by_hand_64: [missing] -> pass (J0)
  • lints::verify_lint_macro_expanded_macro_exports_accessed_by_absolute_paths_128: [missing] -> pass (J0)
  • lints::verify_lint_macro_is_private_109: [missing] -> pass (J0)
  • lints::verify_lint_macro_rule_never_used_111: [missing] -> pass (J0)
  • lints::verify_lint_macro_use_deprecated_103: pass -> [missing] (J0)
  • lints::verify_lint_map_unit_fn_52: [missing] -> pass (J0)
  • lints::verify_lint_metavariable_still_repeating_119: [missing] -> pass (J0)
  • lints::verify_lint_missing_fragment_specifier_116: pass -> [missing] (J0)
  • lints::verify_lint_missing_fragment_specifier_118: [missing] -> pass (J0)
  • lints::verify_lint_missing_unsafe_on_extern_135: pass -> [missing] (J0)
  • lints::verify_lint_missing_unsafe_on_extern_137: [missing] -> pass (J0)
  • lints::verify_lint_non_fmt_panic_braces_75: pass -> [missing] (J0)
  • lints::verify_lint_non_glob_import_type_ir_inherent_61: pass -> [missing] (J0)
  • lints::verify_lint_non_glob_import_type_ir_inherent_63: [missing] -> pass (J0)
  • lints::verify_lint_noop_method_call_76: pass -> [missing] (J0)
  • lints::verify_lint_only_cast_u8_to_char_81: pass -> [missing] (J0)
  • lints::verify_lint_only_cast_u8_to_char_83: [missing] -> pass (J0)
  • lints::verify_lint_or_patterns_back_compat_132: [missing] -> pass (J0)
  • lints::verify_lint_out_of_scope_macro_calls_148: [missing] -> pass (J0)
  • lints::verify_lint_overflowing_uint_82: pass -> [missing] (J0)
  • lints::verify_lint_pass_by_value_79: pass -> [missing] (J0)
  • lints::verify_lint_pass_by_value_81: [missing] -> pass (J0)
  • lints::verify_lint_path_statement_no_effect_94: pass -> [missing] (J0)
  • lints::verify_lint_private_extern_crate_reexport_105: pass -> [missing] (J0)
  • lints::verify_lint_private_extern_crate_reexport_107: [missing] -> pass (J0)
  • lints::verify_lint_ptr_null_checks_fn_ptr_42: pass -> [missing] (J0)
  • lints::verify_lint_ptr_null_checks_fn_ret_44: pass -> [missing] (J0)
  • lints::verify_lint_query_instability_52: pass -> [missing] (J0)
  • lints::verify_lint_query_instability_54: [missing] -> pass (J0)
  • lints::verify_lint_raw_prefix_132: pass -> [missing] (J0)
  • lints::verify_lint_raw_prefix_134: [missing] -> pass (J0)
  • lints::verify_lint_redundant_semicolons_80: pass -> [missing] (J0)
  • lints::verify_lint_removed_lint_67: pass -> [missing] (J0)
  • lints::verify_lint_removed_lint_69: [missing] -> pass (J0)
  • lints::verify_lint_reserved_prefix_131: pass -> [missing] (J0)
  • lints::verify_lint_reserved_string_150: [missing] -> pass (J0)
  • lints::verify_lint_suspicious_double_ref_clone_78: pass -> [missing] (J0)
  • lints::verify_lint_suspicious_double_ref_deref_79: [missing] -> pass (J0)
  • lints::verify_lint_symbol_intern_string_literal_55: pass -> [missing] (J0)
  • lints::verify_lint_symbol_intern_string_literal_57: [missing] -> pass (J0)
  • lints::verify_lint_tykind_59: [missing] -> pass (J0)
  • lints::verify_lint_tykind_kind_56: pass -> [missing] (J0)
  • lints::verify_lint_type_ir_trait_usage_62: [missing] -> pass (J0)
  • lints::verify_lint_unit_bindings_100: [missing] -> pass (J0)
  • lints::verify_lint_unnameable_test_items_113: pass -> [missing] (J0)
  • lints::verify_lint_unnameable_test_items_115: [missing] -> pass (J0)
  • lints::verify_lint_unnecessary_qualification_143: pass -> [missing] (J0)
  • lints::verify_lint_unqualified_local_imports_147: pass -> [missing] (J0)
  • lints::verify_lint_unqualified_local_imports_149: [missing] -> pass (J0)
  • lints::verify_lint_untranslatable_diag_64: pass -> [missing] (J0)
  • lints::verify_lint_untranslatable_diag_66: [missing] -> pass (J0)
  • lints::verify_lint_unused_allocation_96: pass -> [missing] (J0)
  • lints::verify_lint_unused_allocation_mut_97: pass -> [missing] (J0)
  • lints::verify_lint_unused_builtin_attribute_133: pass -> [missing] (J0)
  • lints::verify_lint_unused_closure_94: [missing] -> pass (J0)
  • lints::verify_lint_unused_crate_dependency_121: pass -> [missing] (J0)
  • lints::verify_lint_unused_doc_comment_127: pass -> [missing] (J0)
  • lints::verify_lint_unused_doc_comment_129: [missing] -> pass (J0)
  • lints::verify_lint_unused_extern_crate_139: pass -> [missing] (J0)
  • lints::verify_lint_unused_import_braces_95: pass -> [missing] (J0)
  • lints::verify_lint_unused_macro_definition_110: [missing] -> pass (J0)
  • lints::verify_lint_unused_macro_use_106: [missing] -> pass (J0)
  • lints::verify_lint_unused_result_91: pass -> [missing] (J0)
  • lints::verify_lint_useless_ptr_null_checks_fn_ptr_42: [missing] -> pass (J0)
  • lints::verify_lint_useless_ptr_null_checks_fn_ret_44: [missing] -> pass (J0)
  • lints::verify_lint_uses_power_alignment_86: [missing] -> pass (J0)
  • lints::verify_lint_variant_size_differences_86: pass -> [missing] (J0)

(and 120 additional test diffs)

Additionally, 5 doctest diffs were found. These are ignored, as they are noisy.

Job group index

  • J0: aarch64-apple, aarch64-gnu, i686-gnu-2, i686-gnu-nopt-2, i686-mingw-2, i686-mingw-3, i686-msvc-2, x86_64-apple-1, x86_64-gnu, x86_64-gnu-llvm-18-3, x86_64-gnu-llvm-19-3, x86_64-gnu-nopt, x86_64-gnu-stable, x86_64-mingw-2, x86_64-msvc-2

Job duration changes

  1. aarch64-gnu-debug: 4063.2s -> 6356.4s (56.4%)
  2. dist-apple-various: 7029.6s -> 10181.2s (44.8%)
  3. dist-loongarch64-musl: 5244.6s -> 5692.6s (8.5%)
  4. x86_64-gnu-llvm-19-2: 5626.7s -> 6010.7s (6.8%)
  5. dist-aarch64-linux: 7487.0s -> 7866.7s (5.1%)
  6. dist-i686-msvc: 6905.4s -> 7190.3s (4.1%)
  7. dist-aarch64-msvc: 8464.2s -> 8710.7s (2.9%)
  8. x86_64-msvc-2: 6736.7s -> 6904.4s (2.5%)
  9. i686-gnu-nopt-1: 8292.0s -> 8491.3s (2.4%)
  10. x86_64-msvc-1: 8586.8s -> 8780.6s (2.3%)
How to interpret the job duration changes?

Job durations can vary a lot, based on the actual runner instance
that executed the job, system noise, invalidated caches, etc. The table above is provided
mostly for t-infra members, for simpler debugging of potential CI slow-downs.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (7bfd952): comparison URL.

Overall result: no relevant changes - no action needed

@rustbot label: -perf-regression

Instruction count

This benchmark run did not return any relevant results for this metric.

Max RSS (memory usage)

Results (secondary 2.1%)

This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
2.1% [1.2%, 3.1%] 2
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) - - 0

Cycles

This benchmark run did not return any relevant results for this metric.

Binary size

This benchmark run did not return any relevant results for this metric.

Bootstrap: 776.099s -> 776.473s (0.05%)
Artifact size: 365.92 MiB -> 365.91 MiB (-0.00%)

tamird added a commit to tamird/bpf-linker that referenced this pull request Apr 1, 2025
This was promoted from a clippy lint in nightly.

Link: rust-lang/rust#119220
tamird added a commit to aya-rs/bpf-linker that referenced this pull request Apr 1, 2025
This was promoted from a clippy lint in nightly.

Link: rust-lang/rust#119220
flip1995 pushed a commit to flip1995/rust that referenced this pull request Apr 3, 2025
… r=fee1-dead

Uplift `clippy::invalid_null_ptr_usage` lint as `invalid_null_arguments`

This PR aims at uplifting the `clippy::invalid_null_ptr_usage` lint into rustc, this is similar to the [`clippy::invalid_utf8_in_unchecked` uplift](rust-lang#111543) a few months ago, in the sense that those two lints lint on invalid parameter(s), here a null pointer where it is unexpected and UB to pass one.

*For context: GitHub Search reveals that just for `slice::from_raw_parts{_mut}` [~20 invalid usages](hhttps://github.com/search?q=lang%3Arust+%2Fslice%3A%3Afrom_raw_parts%28_mut%29%3F%5C%28ptr%3A%3Anull%2F+NOT+path%3A%2F%5Eclippy_lints%5C%2Fsrc%5C%2F%2F+NOT+path%3A%2F%5Erust%5C%2Fsrc%5C%2Ftools%5C%2Fclippy%5C%2Fclippy_lints%5C%2Fsrc%5C%2F%2F+NOT+path%3A%2F%5Esrc%5C%2Ftools%5C%2Fclippy%5C%2Fclippy_lints%5C%2Fsrc%5C%2F%2F&type=code) with `ptr::null` and an additional [4 invalid usages](https://github.com/search?q=lang%3Arust+%2Fslice%3A%3Afrom_raw_parts%5C%280%28%5C%29%7C+as%29%2F+NOT+path%3A%2F%5Eclippy_lints%5C%2Fsrc%5C%2F%2F+NOT+path%3A%2F%5Erust%5C%2Fsrc%5C%2Ftools%5C%2Fclippy%5C%2Fclippy_lints%5C%2Fsrc%5C%2F%2F+NOT+path%3A%2F%5Esrc%5C%2Ftools%5C%2Fclippy%5C%2Fclippy_lints%5C%2Fsrc%5C%2F%2F+NOT+path%3A%2F%5Eutils%5C%2Ftinystr%5C%2Fsrc%5C%2F%2F+NOT+path%3A%2F%5Eutils%5C%2Fzerovec%5C%2Fsrc%5C%2F%2F+NOT+path%3A%2F%5Eprovider%5C%2Fcore%5C%2Fsrc%5C%2F%2F&type=code) with `0 as *const ...`-ish casts.*

-----

## `invalid_null_arguments`

(deny-by-default)

The `invalid_null_arguments` lint checks for invalid usage of null pointers.

### Example

```rust
// Undefined behavior
unsafe { std::slice::from_raw_parts(ptr::null(), 1); }
```

Produces:
```
error: calling this function with a null pointer is Undefined Behavior, even if the result of the function is unused
  --> $DIR/invalid_null_args.rs:21:23
   |
LL |     let _: &[usize] = std::slice::from_raw_parts(ptr::null_mut(), 0);
   |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^---------------^^^^
   |                                                  |
   |                                                  null pointer originates from here
   |
   = help: for more information, visit <https://doc.rust-lang.org/std/ptr/index.html> and <https://doc.rust-lang.org/reference/behavior-considered-undefined.html>
```

### Explanation

Calling methods whose safety invariants requires non-null pointer with a null pointer is undefined behavior.

-----

The lint use a list of functions to know which functions and arguments to checks, this could be improved in the future with a rustc attribute, or maybe even with a `#[diagnostic]` attribute.

This PR also includes some small refactoring to avoid some ambiguities in naming, those can be done in another PR is desired.

`@rustbot` label: +I-lang-nominated
r? compiler
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
disposition-merge This issue / PR is in PFCP or FCP with a disposition to merge it. finished-final-comment-period The final comment period is finished for this PR / Issue. I-lang-easy-decision Issue: The decision needed by the team is conjectured to be easy; this does not imply nomination I-lang-nominated Nominated for discussion during a lang team meeting. merged-by-bors This PR was explicitly merged by bors. S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-lang Relevant to the language team, which will review and decide on the PR/issue. to-announce Announce this issue on triage meeting
Projects
None yet
Development

Successfully merging this pull request may close these issues.