Misplaced Pages

Storage violation: Difference between revisions

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
Browse history interactively← Previous editNext edit →Content deleted Content addedVisualWikitext
Revision as of 09:32, 8 March 2009 edit81.129.234.117 (talk) Detection of storage violations - give examples← Previous edit Revision as of 14:17, 2 October 2009 edit undoBeno1000 (talk | contribs)Pending changes reviewers3,659 editsmNo edit summaryNext edit →
Line 1: Line 1:
A '''storage violation''' occurs when a ] modifies ] that it does not own. A '''storage violation''' occurs when a ] modifies, or attempts to modify, ] that it does not own.


==Types of storage violation== ==Types of storage violation==

Revision as of 14:17, 2 October 2009

A storage violation occurs when a task modifies, or attempts to modify, computer storage that it does not own.

Types of storage violation

Storage violation can, for instance, consist of writing to or freeing storage not owned by the task.

A common type of storage violation is known as a stack buffer overflow where a program attempts to alter a memory location beyond its allocated memory.

Avoidance of storage violations

Storage violations can occur in transaction systems such as CICS in circumstances where it is possible to write to storage not owned by the transaction; such violations can be reduced by enabling features such as storage protection and transaction isolation.

Detection of storage violations

In systems such as CICS, storage violations are sometimes detected (by the CICS kernel) by the use of "signatures", which can be tested to see if they have been overlaid.

Some programming languages use software bounds checking to prevent these occurrences.

Some program debugging software will also detect violations during testing.

Examples of software detecting storage violations

References

IBM. "CICS Transaction Server for z/OS, Version 3 Release 2 Information Center". IBM. Retrieved 2008-10-20.

Stub icon

This computer science article is a stub. You can help Misplaced Pages by expanding it.

Categories: