Simplest Possible O/S Design
Posted: Thu Nov 27, 2008 4:12 pm
Admittedly, I have a large learning curve ahead of me even though I have been working in this industry for more than 20 years.
Over that period of time I have watched operating systems (compilers, the Internet, etc) become increasingly complex. So much so that it is resulting in confusion and frustration for the general user and excessive time spent by programmers in coming up with results.
First an historical reference and some comments.
One thing Apple used to have (in its proprietary method) is that it could insure greater stability. Having all the code proprietary at least for the Kernel and drivers, certainly controls things: Certainly much better than the chaos within MS O/S's. I believe everything ran in Ring 0 which is not typical of the O/S's today. In a controlled coding scenario this is probably not a problem as any upgrades that introduced bugs would hopefully get resolved quickly as evidenced by the development of Linux and many other Open Source projects.
With control it is likely that some flexibility would be lost although it would be questionable if this would be an issue.
I propose a more simplified approach and to this end I would like feedback as to why such a proposal would or would not be successful.
Keep in mind this O/S would be for the general user (not necessarily for sophisticated users). The objective is to try and reduce the complicated environment the average user has to contend with.
O/S Design:
1. No memory segmentation
2. No paging ??
3. No traditional filesystem (instead use a single file which is a database containing various entities)
These entities would not resemble the current files we are used to. However, the database would contain all the
descriptive information (and more) that these files currently contain.
4. One large function library that all applications and the kernel use.
5. Library functions are loaded on demand and based on this system design would not necessarily have to be unloaded.
With everything loaded there is a very good chance it would not exhaust all available memory (with the exception of
machines that have under 1 Gig of Ram which this O/S would not support anyway).
6. No windowing GUI
7. All applications are built (programmed) using Meta-data: Basically the application and interactions are "described"
rather than coded in the traditional sense.
8. No runnable applications ever installed: Meta-data would be the only thing ever downloaded.
9. Drivers should run at a level so as to never prevent the Kernel or a user application from running.The most that would
occur is access to a particular device (or set of devices would be compromised). If a failure of this type occurs, the
driver would automatically be reloaded. The assumption is that most driver problems would be of intermittent nature.
Hopefully, any bad problems would be caught while the O/S is in development/testing.
Advantages:
1. Very simple memory management and as a result reduced programming complexity due to lack of "paging"
requirements.
2. Likely, no requirement for virtual memory as the amounts of memory these days would be able to house all user
application requirements.
3. Likely no chance of memory fragmentation.
4. No possibility of virus invasion (i.e., nothing downloaded can ever run).
5. For web/email compatibility, sand-boxing would be used thus preventing viral infections.
6. No lengthy programming and debugging processes (other than for the people that program the Kernel, drivers and
function libraries): User application programming is strictly meta-data definitions.
7. Non-windowing GUI decreases programming complexity, reduces user confusion.
8. No extra software to be purchased (although I suppose Meta-data could incur a cost as this could be produced by
anyone).
9. Single library eliminates redundant programming, prevents virus', reduces user application creation time, drastically
reduces programming learning curve.
10. Greater O/S stability.
11. The requirement to reboot would hopefully be gone.
12. Demand loaded libraries would reduce boot-up time.
13. Database would result in easier modifications to the way objects are handled. The typical O/S cannot easily have it's
filesystem altered as there are requirements for backward compatibility. This would not be an issue with this O/S.
I know a lot of this sounds too good to be true. But, it might just be possible.
Possibly open source code, but trusted sites would insure stability and prevent malicious content. All programmers working on the O/S would have to be "known" in order to prevent malicious code entering the trusted environment. This might occur but only once where a particular individual was involved. Or, perhaps a scenario where code submitted by one individual must be scrutinized by others before it's acceptance into the mainstream code base. In any case, the Linux distributions and many other projects seem to be devoid of such occurrences.
What would really be great is to get a group project going to develop such an O/S. For one person, this would be a monumental task although do-able.
Comments are welcome.
Over that period of time I have watched operating systems (compilers, the Internet, etc) become increasingly complex. So much so that it is resulting in confusion and frustration for the general user and excessive time spent by programmers in coming up with results.
First an historical reference and some comments.
One thing Apple used to have (in its proprietary method) is that it could insure greater stability. Having all the code proprietary at least for the Kernel and drivers, certainly controls things: Certainly much better than the chaos within MS O/S's. I believe everything ran in Ring 0 which is not typical of the O/S's today. In a controlled coding scenario this is probably not a problem as any upgrades that introduced bugs would hopefully get resolved quickly as evidenced by the development of Linux and many other Open Source projects.
With control it is likely that some flexibility would be lost although it would be questionable if this would be an issue.
I propose a more simplified approach and to this end I would like feedback as to why such a proposal would or would not be successful.
Keep in mind this O/S would be for the general user (not necessarily for sophisticated users). The objective is to try and reduce the complicated environment the average user has to contend with.
O/S Design:
1. No memory segmentation
2. No paging ??
3. No traditional filesystem (instead use a single file which is a database containing various entities)
These entities would not resemble the current files we are used to. However, the database would contain all the
descriptive information (and more) that these files currently contain.
4. One large function library that all applications and the kernel use.
5. Library functions are loaded on demand and based on this system design would not necessarily have to be unloaded.
With everything loaded there is a very good chance it would not exhaust all available memory (with the exception of
machines that have under 1 Gig of Ram which this O/S would not support anyway).
6. No windowing GUI
7. All applications are built (programmed) using Meta-data: Basically the application and interactions are "described"
rather than coded in the traditional sense.
8. No runnable applications ever installed: Meta-data would be the only thing ever downloaded.
9. Drivers should run at a level so as to never prevent the Kernel or a user application from running.The most that would
occur is access to a particular device (or set of devices would be compromised). If a failure of this type occurs, the
driver would automatically be reloaded. The assumption is that most driver problems would be of intermittent nature.
Hopefully, any bad problems would be caught while the O/S is in development/testing.
Advantages:
1. Very simple memory management and as a result reduced programming complexity due to lack of "paging"
requirements.
2. Likely, no requirement for virtual memory as the amounts of memory these days would be able to house all user
application requirements.
3. Likely no chance of memory fragmentation.
4. No possibility of virus invasion (i.e., nothing downloaded can ever run).
5. For web/email compatibility, sand-boxing would be used thus preventing viral infections.
6. No lengthy programming and debugging processes (other than for the people that program the Kernel, drivers and
function libraries): User application programming is strictly meta-data definitions.
7. Non-windowing GUI decreases programming complexity, reduces user confusion.
8. No extra software to be purchased (although I suppose Meta-data could incur a cost as this could be produced by
anyone).
9. Single library eliminates redundant programming, prevents virus', reduces user application creation time, drastically
reduces programming learning curve.
10. Greater O/S stability.
11. The requirement to reboot would hopefully be gone.
12. Demand loaded libraries would reduce boot-up time.
13. Database would result in easier modifications to the way objects are handled. The typical O/S cannot easily have it's
filesystem altered as there are requirements for backward compatibility. This would not be an issue with this O/S.
I know a lot of this sounds too good to be true. But, it might just be possible.
Possibly open source code, but trusted sites would insure stability and prevent malicious content. All programmers working on the O/S would have to be "known" in order to prevent malicious code entering the trusted environment. This might occur but only once where a particular individual was involved. Or, perhaps a scenario where code submitted by one individual must be scrutinized by others before it's acceptance into the mainstream code base. In any case, the Linux distributions and many other projects seem to be devoid of such occurrences.
What would really be great is to get a group project going to develop such an O/S. For one person, this would be a monumental task although do-able.
Comments are welcome.