View Single Post
Old 11-09-2005, 05:58 AM   #8 (permalink)
Pragma
I am Winter Born
 
Pragma's Avatar
 
Location: Alexandria, VA
Normally, I wouldn't have the slightest idea about any of this, but we just covered this yesterday in my network security class. Here's some fun facts

Quote:
The monolithic approach defines a high-level virtual interface over the hardware, with a set of primitives or system calls to implement operating system services such as process management, concurrency, and memory management in several modules that run in supervisor mode.

Even if every module servicing these operations is separate from the whole, the code integration is very tight and difficult to do correctly, and, since all the modules run in the same address space, a bug in one module can bring down the whole system. However, when the implementation is complete and trustworthy, the tight internal integration of components allows the low-level features of the underlying system to be effectively utilized, making a good monolithic kernel highly efficient. Proponents of the monolithic kernel approach make the case that if code is incorrect, it does not belong in a kernel, and if it is, there is little advantage in the microkernel approach.
Monolithic kernels are the Linux and BSD distributions, Microkernels include things like Minix and AmigaOS, and there are hybrid kernels like BeOS and Windows 2000/XP/2003/Vista or Mac OS X.

The problem with monolithic kernels is this: let's say you go buy a new piece of hardware, plug it in, and install the driver that came on the CD with it. Now that driver is sitting in your kernel memory and has access to all kernel functions, all system memory, etc. Do you know who wrote the driver? Do you trust them with your data? Do you trust them to write a bug free driver to not crash your system? Bad drivers are the fastest way to bring down a monolithic kernel, and there are a variety of other security flaws that can occur with them.

Microkernels on the other hand have as little as possible in kernel space: just the core OS functionality to handle interprocess communication, virtual memory, and thread management. Everything else, including drivers, run as userland processes. The problem with microkernels is that they're traditionally much slower than monolithic kernels, simply because it has to go to user memory every time it wants to write to a device, send a packet on the internet, etc.

Hybrid kernels are basically modified microkernels. They take the microkernel approach of having next to nothing in the kernel, but then adds some other code so that it performs better. For instance, they may decide to load the device drivers into system memory while still keeping the microkernel approach of segmenting everything else out of kernel memory.

So what's the better way of doing things? I honestly don't know Either way, it's another fun fact about the "which OS is more/less secure" approach.
__________________
Eat antimatter, Posleen-boy!
Pragma is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360