You can't get access (generically) to the observableArray that is being looped over directly inside of the foreach loop.
$root and $parent is about the scope, so it will just give you the object that contains the observableArray.
However, you can take advantage of this by ensuring that the scope is your observableArray by using the with binding.
If you just need the underlying array, then you can do:
<div data-bind="with: products">
<ul data-bind="foreach: $data">
<li>
<strong data-bind="text: name"></strong>
—
Array length: <em data-bind="text: $parent.length"></em>
</li>
</ul>
</div>
If you really need the observableArray, then you need to make sure that it has not been unwrapped (in the above example $data is unwrapped already). To do this, you can normalize the name of the array and look for it in your template like:
<div data-bind="with: { theArray: products }">
<ul data-bind="foreach: theArray">
<li>
<strong data-bind="text: name"></strong>
—
Array length: <em data-bind="text: $parent.theArray().length"></em>
</li>
</ul>
</div>
Here is a sample: http://jsfiddle.net/rniemeyer/T6JvV/
If you can't live with the extra div, then you can certainly use the containerless control-flow bindings like:
<!-- ko with: { theArray: products } -->
<ul data-bind="foreach: theArray">
<li>
<strong data-bind="text: name"></strong>
—
Array length: <em data-bind="text: $parent.theArray().length"></em>
</li>
</ul>
<!-- /ko -->