]> git.kaiwu.me - nginx.git/commitdiff
Mp4: rejecting unordered chunks in stsc atom.
authorRoman Arutyunyan <arut@nginx.com>
Mon, 12 Aug 2024 14:20:45 +0000 (18:20 +0400)
committerRoman Arutyunyan <arut@nginx.com>
Mon, 12 Aug 2024 14:20:45 +0000 (18:20 +0400)
Unordered chunks could result in trak->end_chunk smaller than trak->start_chunk
in ngx_http_mp4_crop_stsc_data().  Later in ngx_http_mp4_update_stco_atom()
this caused buffer overread while trying to calculate trak->end_offset.

src/http/modules/ngx_http_mp4_module.c

index 1cd017c274ea6d2ddfa590668750a5b6366d2015..041ad263b56149d9d5878b72ddad549dddbf4f49 100644 (file)
@@ -3156,6 +3156,13 @@ ngx_http_mp4_crop_stsc_data(ngx_http_mp4_file_t *mp4,
 
         next_chunk = ngx_mp4_get_32value(entry->chunk);
 
+        if (next_chunk < chunk) {
+            ngx_log_error(NGX_LOG_ERR, mp4->file.log, 0,
+                          "unordered mp4 stsc chunks in \"%s\"",
+                          mp4->file.name.data);
+            return NGX_ERROR;
+        }
+
         ngx_log_debug5(NGX_LOG_DEBUG_HTTP, mp4->file.log, 0,
                        "sample:%uD, chunk:%uD, chunks:%uD, "
                        "samples:%uD, id:%uD",