Commit Graph

244043 Commits

Author SHA1 Message Date
christos 0d5ace558d replace variable stack declaration with a large enough one and KASSERT. 2016-07-21 18:21:27 +00:00
christos 90668226c4 Don't do variable stack allocations for systems with non-const PAGE_SIZE;
instead assume that the smallest pagesize is 1024.
2016-07-21 18:10:47 +00:00
christos 687ac45a6a remove .MIPS.abiflags to avoid objcopy creating a 0x20000000 large boot file. 2016-07-21 17:45:00 +00:00
christos 67c90d24d8 make this compile 2016-07-21 17:02:47 +00:00
christos a1d395d60e make this compile. 2016-07-21 17:02:15 +00:00
christos d78413be59 more stack protector 2016-07-21 16:47:50 +00:00
njoly d1b4525986 According to Opengroup online specifications[1], _POSIX_CPUTIME and
_POSIX_THREAD_CPUTIME options should be present in unistd.h not
limits.h. Move them with other options.

[1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html
2016-07-21 16:01:58 +00:00
shm febbddea26 Fix error checks in open(2) calls. 2016-07-21 12:29:37 +00:00
christos 330a03324f Add -lz to makefile to fix the build. 2016-07-21 12:24:54 +00:00
skrll d6309e9a65 Fix typo in comment 2016-07-21 12:17:07 +00:00
kiyohara 4547563530 Attach atphy instead of ukphy. 2016-07-21 09:10:55 +00:00
msaitoh 3ee664bbf4 Update processor families from the latest Intel SDM:
- 06_4FH: Add Xeon E7 v4 and Core i7-69xx Extreme Edition
- 06_57H: Xeon Phi [357]200
2016-07-21 08:37:18 +00:00
dholland ebd6c2ad3e + PTO parent-teacher organization
(also PTA)
2016-07-21 05:07:04 +00:00
ozaki-r 60f4a9a871 Make complex RTM_CHANGE code understandable
Tests for route change added recently would reduce the possibility of
regressions.

Reviewed by ryo@
2016-07-21 03:45:56 +00:00
ozaki-r 3db8106383 Add some tests for route change 2016-07-21 02:02:30 +00:00
ozaki-r 852524ba75 Remove extra grep 2016-07-21 01:56:54 +00:00
ozaki-r 261b1cf92f Make the test name self-descriptive 2016-07-21 01:56:27 +00:00
christos 466a5d87d2 don't die printing a name we don't have 2016-07-21 00:10:57 +00:00
christos eae41fc0ae put ctf lint library back. need to investigate more. 2016-07-20 23:36:23 +00:00
christos 434e55df7c PR/51353: Patrick Mackey: mld6query "-r" option is not recognised
XXX: pullup 7
2016-07-20 23:19:18 +00:00
macallan 6f0091eead use bus_space_map() instead of fudging our own bus_space_handle_t 2016-07-20 22:16:37 +00:00
christos 285a8995e1 unnamed unions need special treatment since they need braced initializers
for old style initializations.
2016-07-20 21:02:04 +00:00
shm ef0b7ea3b6 CID 976523: add FALLTHROUGH 2016-07-20 20:18:21 +00:00
christos 353946982c cplusplus does not like complex named initializers... 2016-07-20 20:06:04 +00:00
christos b826eda4de use named initializers 2016-07-20 19:26:52 +00:00
christos c351e21641 accept attributes in param decls 2016-07-20 18:14:12 +00:00
macallan d2759bb333 fix tpyo, now n32 kernels have a chance to work again 2016-07-20 17:57:00 +00:00
christos 29a071ed18 handle "extern __attribute__((__gnu_inline__)) __inline" 2016-07-20 17:42:14 +00:00
christos 986517611c add uvm_km_protect() 2016-07-20 17:03:50 +00:00
maxv b3ef9106d5 This comment is wrong. In fact, we are in low physical memory, but in high
virtual memory, and only the latter matters. I'm not exactly sure why, but
it appears that the kernel modules must be placed above the kernel image.
Just make this comment more ambiguous, in case the next passer-by gets
inspired.
2016-07-20 13:49:17 +00:00
maxv ece8cd54ab Split the data+bss+rodata segment in two data+bss and rodata segments. The
latter is made read-only.
2016-07-20 13:36:19 +00:00
maxv d2c6c6c84f Change the protection of the kernel modules segments once we are done
relocating them. The text is allocated as RWX, and then mprotected to RW.

There is a bug that prevents us from doing RW->RX on amd64 and perhaps
sparc64. On x86, the pmap waits for the page to fault before granting it
the X permission. But in the trap handler, such a page is considered as
belonging to kernel_map, while it actually belongs to module_map. The
kernel then finds out the page is not present in kernel_map, and panics.
In all cases, module_map is non pageable, so even if the trap were handled
properly, it still wouldn't work.

Therefore, there is a small window in which the segment is RWX. But that's
fine enough, for now.
2016-07-20 13:11:58 +00:00
maxv 154c680895 Introduce uvm_km_protect. 2016-07-20 12:38:43 +00:00
maxv b7e4d22b17 There is a huge bug in the way a uvm_map_protect is processed on x86.
When mprotecting a page, the kernel updates the uvm protection associated
with the page, and then gives control to the x86 pmap which splits the
procedure in two: if we are restricting the permissions it updates the page
tree right away, and if we are increasing the permissions it just waits for
the page to fault.

In the first case, it forgets to take care of the X permission. Which means
that if we allocate an executable page, it is impossible to remove the X
permission on it, this being true regardless of whether the mprotect call
comes from the kernel or from userland. It is not possible to make sure the
page is non executable either, since the only holder of the permission
information is uvm, and no track is kept at the pmap level of the actual
permissions enforced. In short, the kernel believes the page is non
executable, while the cpu knows it is.

Fix this by properly taking care of the !VM_PROT_EXECUTE case. Since the
bit manipulation is a little tricky we use two vars: bit_rem (remove) and
bit_put.
2016-07-20 12:33:59 +00:00
christos 1ffae14399 mark tag_signal as noreturn. 2016-07-20 12:04:18 +00:00
ozaki-r 1f39eeaeb9 Get rid of extra ifafree
It was wrongly imported from FreeBSD.
2016-07-20 07:56:10 +00:00
ozaki-r 4f21a42704 Apply pserialize to some iterations of IP address lists 2016-07-20 07:37:51 +00:00
ozaki-r eef1e5e6e7 Reduce scopes of variables 2016-07-20 03:38:09 +00:00
ozaki-r 133f516a49 Get rid of unnecessary satosin 2016-07-20 03:36:51 +00:00
shm 31d615acc3 CID 603440: ensure that closing socket exists 2016-07-19 21:25:38 +00:00
maxv 5769e840ca This loop makes no sense at all. 2016-07-19 18:54:45 +00:00
christos 53697fe783 make the check work with widths other than 4, Felix Deichmann 2016-07-19 18:27:27 +00:00
maya ef4ada88df CFATTACH_DECL -> CFATTACH_DECL_NEW
struct device * -> device_t
2016-07-19 17:04:25 +00:00
maya bd2a0d0ca6 Don't reference older CFATTACH_DECL 2016-07-19 17:01:04 +00:00
christos ec0d275be2 PR/50849: Felix Deichmann: Relax TC option ROM header check for ROM widths < 4 2016-07-19 16:58:05 +00:00
maya 28b30b97a1 Remove unused bits
(mostly because _IPL_NSOFT is not defined)
2016-07-19 16:39:54 +00:00
maya 67b719e39e Change cpu_intr prototype to new one, to avoid conflicts.
Make the function resemble typical cpu_intr code.
2016-07-19 13:58:09 +00:00
maya 294885819e Don't use old style definition 2016-07-19 13:50:02 +00:00
maya c7f49c0a67 We need to include param.h before device.h, as it uses uint64_t 2016-07-19 13:48:51 +00:00
shm d3c94bcc3a Fix race condition in deliver(), fix resource leak. 2016-07-19 13:11:38 +00:00