vote up 3 vote down star
1

What industry known software safety standards has anyone had experience in having to adhere to while developing software that is involved in controlling a device/system that has potential to harm the individuals using it?

flag
any malfunction (error state) must stop the device and require a human action to turn it on again. – dusoft Feb 19 at 16:00
Possibly an exact duplicate of stackoverflow.com/questions/142722/… - but that one never satisfied me, so hopefully this one will come up with better results... – Adam Davis Feb 19 at 16:10

6 Answers

vote up -5 vote down

Software should never run a system that could injure someone. The only possible (and still questionable) time this might be false is when using a safety reliable PLC which is specially engineered for safety.

You should look into:

link|flag
Your car's traction control and ABS could both kill people, and they are being run by software. Are you saying these systems should not have been created? – Adam Davis Feb 19 at 16:08
@Adam: Both of these systems have fail safe mechanical and electrical controls. The safety portion of them is /not/ in code. – Rich B Feb 19 at 16:10
"Both of these systems have fail safe mechanical and electrical controls." False. Having signed an NDA I'm not able to provide you with references. I would be interested to see what other automotive suppliers of these components do that makes you feel they have mechanical or electrical interlocks. – Adam Davis Feb 19 at 16:23
Or, I should say, have mechanical or electrical interlocks that prevent the possibility of the software causing a life threatening problem. They do, of course, have many protections in all realms (code, mechanical, electrical) but the software is still critically capable of harm. – Adam Davis Feb 19 at 16:24
Let's not forget medical device software, which is perfectly capable of killing (and has). How about robot control software (again, robots have killed)? If we shunned all software-controlled potentially lethal things, we'd lose big-time. – David Thornley Feb 19 at 16:30
show 6 more comments
vote up 1 vote down

Start here: http://www.aonix.com/safety_critical_overview.html

Read this: http://www.ghs.com/products/safety_critical/index.html

Listen to this: http://www.podnova.com/channel/388090/episode/7/

This is a well-understood topic. The military has been building safety-critical software for years.

link|flag
vote up 0 vote down

MISRA is the standard followed in the automotive industry, but it's a coding standard to ensure correctness of operation and portability.

You need to read up on the Therac accidents to understand the complexity of this issue.

Also, NASA and military documents are widely available and discuss standards for coding that allow determination of safety of the system.

-Adam

link|flag
vote up 0 vote down

Not a saftey standard, but reading comp.risks for a while will show the kind of problems you will need to work hard to prevent.

(The book, "Computer Related Risks" is very good as well.)

link|flag
vote up 0 vote down

Different industries have different standards. Aircraft and robotics for example. Standards are still evolving in some new industries, such as surgical robots. Still there are some common elements. The first is redundancy. I work with industrial robots. For critical items such as speed control, we use three different calculations on two different controllers. For emergency stop systems we use dual circuits, every red e-stop button has two physical switches behind it.

I used to work on aircraft. On aircraft autopilots there are often two or even three separate computers doing the calculations and comparing results.

The goal is to prevent any single failure from making the system unsafe.

You need to look at the rules and regulations that govern the area you are working in to see what the legal requirements are, but you have to make the entire system safe.

link|flag
vote up 0 vote down

The Aonix link above is a good one for the basic reasoning. If you want examples of how particular standards work, you can google for the following:

  • IEC61508: “Functional safety of electrical / electronic / programmable electronic safety-related systems (E/E/PES)”. Base standard that is referenced in various sector specific standards. This IEC page is a good starting point. Part 61508-3 is about software.
  • DO-178B: Avionics standard with similar scope as IEC61508 that takes a slightly different view on software
  • IEC60601-1-4: Deals with "Programmable electrical medical systems" (Part of the 60601 series of standards)
  • EN5012x: Railway specific standards - 50128 is about software.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.