]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/passes/html_tags.rs
Rollup merge of #92917 - jackh726:issue-91762-2, r=nikomatsakis
[rust.git] / src / librustdoc / passes / html_tags.rs
1 //! Detects invalid HTML (like an unclosed `<span>`) in doc comments.
2 use super::Pass;
3 use crate::clean::*;
4 use crate::core::DocContext;
5 use crate::html::markdown::main_body_opts;
6 use crate::visit::DocVisitor;
7
8 use pulldown_cmark::{Event, Parser, Tag};
9
10 use std::iter::Peekable;
11 use std::ops::Range;
12 use std::str::CharIndices;
13
14 crate const CHECK_INVALID_HTML_TAGS: Pass = Pass {
15     name: "check-invalid-html-tags",
16     run: check_invalid_html_tags,
17     description: "detects invalid HTML tags in doc comments",
18 };
19
20 struct InvalidHtmlTagsLinter<'a, 'tcx> {
21     cx: &'a mut DocContext<'tcx>,
22 }
23
24 crate fn check_invalid_html_tags(krate: Crate, cx: &mut DocContext<'_>) -> Crate {
25     if cx.tcx.sess.is_nightly_build() {
26         let mut coll = InvalidHtmlTagsLinter { cx };
27         coll.visit_crate(&krate);
28     }
29     krate
30 }
31
32 const ALLOWED_UNCLOSED: &[&str] = &[
33     "area", "base", "br", "col", "embed", "hr", "img", "input", "keygen", "link", "meta", "param",
34     "source", "track", "wbr",
35 ];
36
37 fn drop_tag(
38     tags: &mut Vec<(String, Range<usize>)>,
39     tag_name: String,
40     range: Range<usize>,
41     f: &impl Fn(&str, &Range<usize>, bool),
42 ) {
43     let tag_name_low = tag_name.to_lowercase();
44     if let Some(pos) = tags.iter().rposition(|(t, _)| t.to_lowercase() == tag_name_low) {
45         // If the tag is nested inside a "<script>" or a "<style>" tag, no warning should
46         // be emitted.
47         let should_not_warn = tags.iter().take(pos + 1).any(|(at, _)| {
48             let at = at.to_lowercase();
49             at == "script" || at == "style"
50         });
51         for (last_tag_name, last_tag_span) in tags.drain(pos + 1..) {
52             if should_not_warn {
53                 continue;
54             }
55             let last_tag_name_low = last_tag_name.to_lowercase();
56             if ALLOWED_UNCLOSED.contains(&last_tag_name_low.as_str()) {
57                 continue;
58             }
59             // `tags` is used as a queue, meaning that everything after `pos` is included inside it.
60             // So `<h2><h3></h2>` will look like `["h2", "h3"]`. So when closing `h2`, we will still
61             // have `h3`, meaning the tag wasn't closed as it should have.
62             f(&format!("unclosed HTML tag `{}`", last_tag_name), &last_tag_span, true);
63         }
64         // Remove the `tag_name` that was originally closed
65         tags.pop();
66     } else {
67         // It can happen for example in this case: `<h2></script></h2>` (the `h2` tag isn't required
68         // but it helps for the visualization).
69         f(&format!("unopened HTML tag `{}`", tag_name), &range, false);
70     }
71 }
72
73 fn extract_path_backwards(text: &str, end_pos: usize) -> Option<usize> {
74     use rustc_lexer::{is_id_continue, is_id_start};
75     let mut current_pos = end_pos;
76     loop {
77         if current_pos >= 2 && text[..current_pos].ends_with("::") {
78             current_pos -= 2;
79         }
80         let new_pos = text[..current_pos]
81             .char_indices()
82             .rev()
83             .take_while(|(_, c)| is_id_start(*c) || is_id_continue(*c))
84             .reduce(|_accum, item| item)
85             .and_then(|(new_pos, c)| is_id_start(c).then_some(new_pos));
86         if let Some(new_pos) = new_pos {
87             if current_pos != new_pos {
88                 current_pos = new_pos;
89                 continue;
90             }
91         }
92         break;
93     }
94     if current_pos == end_pos {
95         return None;
96     } else {
97         return Some(current_pos);
98     }
99 }
100
101 fn extract_html_tag(
102     tags: &mut Vec<(String, Range<usize>)>,
103     text: &str,
104     range: &Range<usize>,
105     start_pos: usize,
106     iter: &mut Peekable<CharIndices<'_>>,
107     f: &impl Fn(&str, &Range<usize>, bool),
108 ) {
109     let mut tag_name = String::new();
110     let mut is_closing = false;
111     let mut prev_pos = start_pos;
112
113     loop {
114         let (pos, c) = match iter.peek() {
115             Some((pos, c)) => (*pos, *c),
116             // In case we reached the of the doc comment, we want to check that it's an
117             // unclosed HTML tag. For example "/// <h3".
118             None => (prev_pos, '\0'),
119         };
120         prev_pos = pos;
121         // Checking if this is a closing tag (like `</a>` for `<a>`).
122         if c == '/' && tag_name.is_empty() {
123             is_closing = true;
124         } else if c.is_ascii_alphanumeric() {
125             tag_name.push(c);
126         } else {
127             if !tag_name.is_empty() {
128                 let mut r = Range { start: range.start + start_pos, end: range.start + pos };
129                 if c == '>' {
130                     // In case we have a tag without attribute, we can consider the span to
131                     // refer to it fully.
132                     r.end += 1;
133                 }
134                 if is_closing {
135                     // In case we have "</div >" or even "</div         >".
136                     if c != '>' {
137                         if !c.is_whitespace() {
138                             // It seems like it's not a valid HTML tag.
139                             break;
140                         }
141                         let mut found = false;
142                         for (new_pos, c) in text[pos..].char_indices() {
143                             if !c.is_whitespace() {
144                                 if c == '>' {
145                                     r.end = range.start + new_pos + 1;
146                                     found = true;
147                                 }
148                                 break;
149                             }
150                         }
151                         if !found {
152                             break;
153                         }
154                     }
155                     drop_tag(tags, tag_name, r, f);
156                 } else {
157                     tags.push((tag_name, r));
158                 }
159             }
160             break;
161         }
162         iter.next();
163     }
164 }
165
166 fn extract_tags(
167     tags: &mut Vec<(String, Range<usize>)>,
168     text: &str,
169     range: Range<usize>,
170     is_in_comment: &mut Option<Range<usize>>,
171     f: &impl Fn(&str, &Range<usize>, bool),
172 ) {
173     let mut iter = text.char_indices().peekable();
174
175     while let Some((start_pos, c)) = iter.next() {
176         if is_in_comment.is_some() {
177             if text[start_pos..].starts_with("-->") {
178                 *is_in_comment = None;
179             }
180         } else if c == '<' {
181             if text[start_pos..].starts_with("<!--") {
182                 // We skip the "!--" part. (Once `advance_by` is stable, might be nice to use it!)
183                 iter.next();
184                 iter.next();
185                 iter.next();
186                 *is_in_comment = Some(Range {
187                     start: range.start + start_pos,
188                     end: range.start + start_pos + 3,
189                 });
190             } else {
191                 extract_html_tag(tags, text, &range, start_pos, &mut iter, f);
192             }
193         }
194     }
195 }
196
197 impl<'a, 'tcx> DocVisitor for InvalidHtmlTagsLinter<'a, 'tcx> {
198     fn visit_item(&mut self, item: &Item) {
199         let tcx = self.cx.tcx;
200         let hir_id = match DocContext::as_local_hir_id(tcx, item.def_id) {
201             Some(hir_id) => hir_id,
202             None => {
203                 // If non-local, no need to check anything.
204                 return;
205             }
206         };
207         let dox = item.attrs.collapsed_doc_value().unwrap_or_default();
208         if !dox.is_empty() {
209             let report_diag = |msg: &str, range: &Range<usize>, is_open_tag: bool| {
210                 let sp = match super::source_span_for_markdown_range(tcx, &dox, range, &item.attrs)
211                 {
212                     Some(sp) => sp,
213                     None => item.attr_span(tcx),
214                 };
215                 tcx.struct_span_lint_hir(crate::lint::INVALID_HTML_TAGS, hir_id, sp, |lint| {
216                     use rustc_lint_defs::Applicability;
217                     let mut diag = lint.build(msg);
218                     // If a tag looks like `<this>`, it might actually be a generic.
219                     // We don't try to detect stuff `<like, this>` because that's not valid HTML,
220                     // and we don't try to detect stuff `<like this>` because that's not valid Rust.
221                     if let Some(Some(generics_start)) = (is_open_tag
222                         && dox[..range.end].ends_with(">"))
223                     .then(|| extract_path_backwards(&dox, range.start))
224                     {
225                         let generics_sp = match super::source_span_for_markdown_range(
226                             tcx,
227                             &dox,
228                             &(generics_start..range.end),
229                             &item.attrs,
230                         ) {
231                             Some(sp) => sp,
232                             None => item.attr_span(tcx),
233                         };
234                         // multipart form is chosen here because ``Vec<i32>`` would be confusing.
235                         diag.multipart_suggestion(
236                             "try marking as source code",
237                             vec![
238                                 (generics_sp.shrink_to_lo(), String::from("`")),
239                                 (generics_sp.shrink_to_hi(), String::from("`")),
240                             ],
241                             Applicability::MaybeIncorrect,
242                         );
243                     }
244                     diag.emit()
245                 });
246             };
247
248             let mut tags = Vec::new();
249             let mut is_in_comment = None;
250             let mut in_code_block = false;
251
252             let p = Parser::new_ext(&dox, main_body_opts()).into_offset_iter();
253
254             for (event, range) in p {
255                 match event {
256                     Event::Start(Tag::CodeBlock(_)) => in_code_block = true,
257                     Event::Html(text) | Event::Text(text) if !in_code_block => {
258                         extract_tags(&mut tags, &text, range, &mut is_in_comment, &report_diag)
259                     }
260                     Event::End(Tag::CodeBlock(_)) => in_code_block = false,
261                     _ => {}
262                 }
263             }
264
265             for (tag, range) in tags.iter().filter(|(t, _)| {
266                 let t = t.to_lowercase();
267                 !ALLOWED_UNCLOSED.contains(&t.as_str())
268             }) {
269                 report_diag(&format!("unclosed HTML tag `{}`", tag), range, true);
270             }
271
272             if let Some(range) = is_in_comment {
273                 report_diag("Unclosed HTML comment", &range, false);
274             }
275         }
276
277         self.visit_item_recur(item)
278     }
279 }