Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
Opus
Opus
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 26
    • Issues 26
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge Requests 2
    • Merge Requests 2
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
  • Operations
    • Operations
    • Incidents
    • Environments
  • Packages & Registries
    • Packages & Registries
    • Container Registry
  • Analytics
    • Analytics
    • CI / CD
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Xiph.Org
  • OpusOpus
  • Issues
  • #2320

Closed
Open
Opened Mar 19, 2019 by Roman@hamst

silk_LPC_inverse_pred_gain_neon methods reads memory outside of the intended buffer

The problem connected with attempt to read data outside of the intended buffer in method silk_LPC_inverse_pred_gain_neon.

Buffer of length MAX_LPC_ORDER (=16) is placed in silk_find_LPC_FIX stack:

opus_int16   a_tmp_Q12[ MAX_LPC_ORDER ];

Attempt to read the buffer outside boundaries in silk_LPC_inverse_pred_gain_neon

t0_s16x8 = vld1q_s16( A_Q12 +  0 );
t1_s16x8 = vld1q_s16( A_Q12 +  8 );
t2_s16x8 = vld1q_s16( A_Q12 + 16 );

Backtrace of methods silk_LPC_inverse_pred_gain_neon silk_NLSF2A silk_find_LPC_FIX

Assignee
Assign to
None
Milestone
None
Assign milestone
Time tracking
None
Due date
None
Reference: xiph/opus#2320