There are so many layers of abstraction in the Windows API
that it’s a miracle that anyone could maintain it - which probably
explains the increasing level of bloat in new versions of Windows.
Are there fewer layers of abstraction in other popular OSEs?The NT side had the advantage of being designed at all rather than growing organically by overworked developers hacking in whatever they needed right now, and had a number of assumptions (e.g. not starting with the 16-bit API real-mode model) which avoided some gnarly hacks.
The problem was compatibility: most of the apps had been developed on 16-bit Windows 3 or, later, Win95 and at the time Microsoft's dominance was far from a given so they were pathologically afraid of breaking compatibility, which meant that the Windows “platform” included a lot of weird semi-or-undocumented corners designed to avoid breaking specific apps and the NT side had to reimplement bugwards-compatible versions of most of them to avoid breaking shipped apps.
(This might seem excessive – and I would generally agree – but it's important to remember that much of the damage was done in the pre-internet era when shipping updates to software meant putting a box in the main with a pile of floppies or, for the really rich people, CDs. Getting someone to upgrade to a version of an app which didn't rely on an implementation quirk could take many years.)
Raymond Chen has written about this extensively at http://blogs.msdn.com/b/oldnewthing/ and one of my favorite examples is the Shell Folders registry key:
http://blogs.msdn.com/b/oldnewthing/archive/2003/11/03/55532...
The closest you come to this on another mainstream OS is OS X, where they maintained Carbon (i.e. the supported subset of the classic Mac OS APIs) on top of the modern core but that was both more limited and was rapidly deprecated because Apple is far less concerned with breaking backwards compatibility than Microsoft used to be.
One of my personal favorite examples of this is the GetRandomRgn function in Windows's windowing API.
https://msdn.microsoft.com/en-us/library/windows/desktop/dd1...
http://blogs.msdn.com/b/oldnewthing/archive/2012/06/18/10321...
That is, change the path separator to '/', ditch the drive letters, and the magic file names like CON, and the 8.3 names.
It sounds like a huge breaking change but code that is already using the shell path functions https://msdn.microsoft.com/en-us/library/windows/desktop/bb7... would work transparently.
change the path separator to '/'
I believe that the Windows API supports '/' as a path separator and that it's user mode apps that tend not to. I can't find a good citation for that, though. E:>cd ./work/depot/code
E:\Work\depot\code>cd /
The syntax of the command is incorrect.
E:\Work\depot\code>cd e:/
E:>dir /
Invalid switch - "".
E:>dir ./
Invalid switch - "".
E:>dir e:/
Invalid switch - "". c:\>dir "d:/"
Volume in drive D is HDD
...
This is quite useful when writing cross-platform makefiles :)http://superuser.com/questions/176388/why-does-windows-use-b...
MS-DOS 1.0 (which did not support directories at all) was already
using / to introduce command-line options. It took this usage
of / from CP/M, which took it from VMS.
http://blogs.msdn.com/b/larryosterman/archive/2005/06/24/432... goes into more detail.“File I/O functions in the Windows API convert "/" to "\" as part of converting the name to an NT-style name, except when using the "\\?\" prefix as detailed in the following sections.”
https://msdn.microsoft.com/en-us/library/windows/desktop/aa3...
This stuff is a thicket of special cases:
Is it? That's the only special case I find on that page. Are there specific API functions that have other special cases?“Many but not all file I/O APIs support "\\?\"; you should look at the reference topic for each API to be sure.”
I'd be surprised if they changed the path separator but the device filenames and FAT-compatible short names seem worth doing for security alone.
It seems like there are lots of layers in Linux distributions because of the Unix philosophy. For example, to put a window on a screen, aren't the layers something like this:
App -> window manager -> desktop environment -> X -> graphics driver (-> hardware)
Is that a good approximation? What does that look like on e.g. Windows and Mac OS?
Is the situation on Linux similar for audio? From my armchair, my impression is that audio on Linux is/was... complicated.
No, the window manager isn't in that chain. You can kill the window manager and your applications can keep running and drawing to the screen, but you can't move or resize windows. Also, instead of "Desktop environment" you mean GUI widget toolkit.
Also, instead of "Desktop environment" you mean GUI widget toolkit.
By desktop environment I meant e.g. Gnome or KDE. Aren't they separate from the widget toolkits?I was being charitable. The desktop environment doesn't belong in the graph you drew. The GUI widgets belong in the place where you wrote "desktop environment". The charitable assumption is that you reasonably conflated the GUI widget toolkits for desktop environments, since the very popular KDE and Gnome are strongly tied to Qt and gtk, respectively.
There definitely is a network somewhere in between (possibly almost optimized away in many cases)
This is application servers, not OSs, and its old, but is a pretty famous example:
https://ma.ttias.be/system-calls-in-apache-linux-vs-iis-wind...
1.) "0x12b9b0a5. This equals 314159269 in decimal. Yep, that’s the first 8 digits of pi right there" -- actually, it's not. The first 8 digits of pi are 3.14159265, it's not clear why the Microsoft developers ended with a 9 instead of a 5, perhaps a mistake? perhaps to help with coprime-ness?
2.) The "ANSI C" version uses mbstowcs which isn't any kind of ANSI C function I've ever heard of.
Fantastic article, really enjoyed reading, many thanks.
Those are the first 9 digits if you count 3 - the 9 at the end is the 9th digit, not the 8th, so the first 8 digits are correct. You're correct about the ANSI C part though, it's actually C99 - I've corrected that part. Thanks.
EDIT: Oh, I see what you mean. He's saying the first 8 digits of that are the first 8 digits of pi, although the 9th is incorrect. Got it.
Well the DDK is called WDK now, but anyways how does one not have access to it? It's right here: https://msdn.microsoft.com/en-us/windows/hardware/hh852365
I thought that Windows 2000 source leaked. Would seem like an easier path. Though certainly not better (for either the author or a reader).
make a clean room reimplementation
Which, as far as I understand it, could be someone posting a human-language description of the algorithm here (based on the blog post,) then ReactOS writing code based on that description. (IANAL.)The problem turned out to be the code that found the 8.3 filename: it did the longfi~1.bin, checked to see if that file existed and if so, incremented to longfi~2.bin, then checked that... but never did the checksum trick described here, just kept iterating. (bear in mind this was a tiny 8-bit microcontroller that didn't have the RAM to just read all the directory entries at once and keep them around for comparison) Finding the proper 8.3 filename this way took longer than the timeout period after 104 collisions.
Of course, we only cared about the long filename and never saw the 8.3 filename, so my fix was simply to use an appropriate hash of the long filename to ensure a good probability of uniqueness.
Segmentation fault?
Filesystem drivers may give up long before then, and access to such a huge directory would be very slow, but there's nothing in the filesystem structures itself that would prevent it. I've written FAT code for an embedded device that I can confidently say would have no problems with large directories, since it'll just keep following the cluster chain to the end.