|
77 | 77 |
|
78 | 78 | my %maybe_linker_symbol; # for externs in c exceptions, when seen in *vmlinux.lds.h
|
79 | 79 |
|
| 80 | +my $pending_log = undef; |
| 81 | + |
80 | 82 | sub help {
|
81 | 83 | my ($exitcode) = @_;
|
82 | 84 |
|
@@ -3878,6 +3880,91 @@ sub process {
|
3878 | 3880 | }
|
3879 | 3881 | }
|
3880 | 3882 |
|
| 3883 | +# check for pr_* and dev_* logs without a newline for C and Rust files to avoid missing log messages |
| 3884 | + my $pr_cont_pattern = qr{ |
| 3885 | + \b |
| 3886 | + pr_cont!? |
| 3887 | + \s* |
| 3888 | + \( |
| 3889 | + \s* |
| 3890 | + "([^"]*)" |
| 3891 | + [^)]* |
| 3892 | + \) |
| 3893 | + }x; |
| 3894 | + my $log_macro_pattern = qr{ |
| 3895 | + \b |
| 3896 | + ( |
| 3897 | + pr_(?:emerg|alert|crit|err|warn|notice|info|debug) |
| 3898 | + | dev_(?:emerg|alert|crit|err|warn|notice|info|dbg) |
| 3899 | + ) |
| 3900 | + (!?) |
| 3901 | + \s* |
| 3902 | + \( |
| 3903 | + \s* |
| 3904 | + "([^"]*)" |
| 3905 | + }x; |
| 3906 | + |
| 3907 | + if ($realfile =~ /\.(?:c|h|rs)$/) { |
| 3908 | + if ($rawline =~ /^\+/) { |
| 3909 | + my $cleanline = $rawline; |
| 3910 | + $cleanline =~ s/^[+\s]+//; |
| 3911 | + $cleanline =~ s/\r?$//; |
| 3912 | + $cleanline =~ s{/\*.*?\*/}{}g; |
| 3913 | + $cleanline =~ s{//.*}{}g; |
| 3914 | + |
| 3915 | + if ($pending_log) { |
| 3916 | + if ($cleanline =~ /$pr_cont_pattern/) { |
| 3917 | + my $cont_string_arg = $1; |
| 3918 | + if ($cont_string_arg =~ /\\n$/) { |
| 3919 | + $pending_log = undef; |
| 3920 | + } |
| 3921 | + } elsif ($cleanline =~ /$log_macro_pattern/) { |
| 3922 | + WARN($pending_log->{lang} . "_LOG_NO_NEWLINE", |
| 3923 | + "Possible usage of $pending_log->{macro_call} without a trailing newline.\n" . |
| 3924 | + $pending_log->{herecurr}); |
| 3925 | + |
| 3926 | + $pending_log = undef; |
| 3927 | + |
| 3928 | + my $macro_call = $1; |
| 3929 | + my $maybe_excl = $2; |
| 3930 | + my $string_arg = $3; |
| 3931 | + $string_arg =~ s/\s+$//; |
| 3932 | + |
| 3933 | + if ($realfile =~ /\.rs$/ && $maybe_excl ne '!') { |
| 3934 | + return; |
| 3935 | + } |
| 3936 | + |
| 3937 | + if ($string_arg !~ /\\n$/ && $string_arg !~ /\n$/) { |
| 3938 | + $pending_log = { |
| 3939 | + macro_call => $macro_call, |
| 3940 | + herecurr => $herecurr, |
| 3941 | + lang => ($realfile =~ /\.rs$/) ? "Rust" : "C", |
| 3942 | + }; |
| 3943 | + } |
| 3944 | + } |
| 3945 | + } else { |
| 3946 | + if ($cleanline =~ /$log_macro_pattern/) { |
| 3947 | + my $macro_call = $1; |
| 3948 | + my $maybe_excl = $2; |
| 3949 | + my $string_arg = $3; |
| 3950 | + $string_arg =~ s/\s+$//; |
| 3951 | + |
| 3952 | + if ($realfile =~ /\.rs$/ && $maybe_excl ne '!') { |
| 3953 | + return; |
| 3954 | + } |
| 3955 | + |
| 3956 | + if ($string_arg !~ /\\n$/ && $string_arg !~ /\n$/) { |
| 3957 | + $pending_log = { |
| 3958 | + macro_call => $macro_call, |
| 3959 | + herecurr => $herecurr, |
| 3960 | + lang => ($realfile =~ /\.rs$/) ? "Rust" : "C", |
| 3961 | + }; |
| 3962 | + } |
| 3963 | + } |
| 3964 | + } |
| 3965 | + } |
| 3966 | + } |
| 3967 | + |
3881 | 3968 | # check for .L prefix local symbols in .S files
|
3882 | 3969 | if ($realfile =~ /\.S$/ &&
|
3883 | 3970 | $line =~ /^\+\s*(?:[A-Z]+_)?SYM_[A-Z]+_(?:START|END)(?:_[A-Z_]+)?\s*\(\s*\.L/) {
|
@@ -7670,6 +7757,15 @@ sub process {
|
7670 | 7757 | }
|
7671 | 7758 | }
|
7672 | 7759 |
|
| 7760 | +# pending log means a pr_* without an ending newline has not |
| 7761 | +# been followed by a pr_cont call with a newline at the end |
| 7762 | + if ($pending_log) { |
| 7763 | + WARN($pending_log->{lang} . "_LOG_NO_NEWLINE", |
| 7764 | + "Usage of $pending_log->{macro_call} without a trailing newline.\n" . |
| 7765 | + $pending_log->{herecurr}); |
| 7766 | + $pending_log = undef; |
| 7767 | + } |
| 7768 | + |
7673 | 7769 | # If we have no input at all, then there is nothing to report on
|
7674 | 7770 | # so just keep quiet.
|
7675 | 7771 | if ($#rawlines == -1) {
|
|
0 commit comments