Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-27 | kernel: add secalloc() and secfree() functions for secret memory allocation | cinap_lenrek | |
The kernel needs to keep cryptographic keys and cipher states confidential. secalloc() allocates memory from the secret pool which is protected from debuggers reading the memory thru devproc. secfree() releases the memory, overriding the data with garbage. | |||
2016-08-27 | libc: add poolisoverlap() and definitions for Pool *secrmem | cinap_lenrek | |
2016-08-26 | Bfn: set +x | aiju | |
2016-08-25 | document Bfn | aiju | |
2016-08-25 | fix Bfn botch | aiju | |
2016-08-25 | add Bfn script | aiju | |
2016-08-20 | merge | cinap_lenrek | |
2016-08-20 | vga/igfx: add pci did's for kenjis intel graphics cards. | cinap_lenrek | |
2016-08-20 | merge | cinap_lenrek | |
2016-08-20 | vga/igfx: work in progress fdi link train for sandy bridge, properly ↵ | cinap_lenrek | |
calculate fdi and displayport lane count | |||
2016-08-18 | fix awk format printing bugs (thanks aiju) | spew | |
2016-08-16 | devmnt: fix mistake in mntrahread() | cinap_lenrek | |
mntrahread() had the prefetch window condition wrong so it would very agressively prefetch ignoring the prefetch window. | |||
2016-08-15 | webfs: dont include http status in "needkey" error string | cinap_lenrek | |
2016-08-15 | libframe: consistent use of nil vs. 0 | cinap_lenrek | |
2016-08-15 | libflate: add bounds checking on decode array, add sanity checks in hufftab() | cinap_lenrek | |
2016-08-14 | ndb/cs: don't lookup AAAA records for IL, make sure translated address is ↵ | cinap_lenrek | |
IPv4 for IL, consistent use of nil vs. 0 for pointers | |||
2016-08-14 | ip/il: dont attept to connect over IPv6, IL only supports IPv4 packets | cinap_lenrek | |
2016-08-14 | 6c: subsitute floating point registers eleminating MOVSD and MOVSS ↵ | cinap_lenrek | |
instructions in peephole pass | |||
2016-08-10 | ratrace: fix fork/exec race with "nohang" procctl (like a debugger) | cinap_lenrek | |
2016-08-08 | document mplogic functions | aiju | |
2016-08-08 | auth/fgui: use pale colors | cinap_lenrek | |
2016-08-08 | libcontrol: primitive text entry cut and paste with mouse | cinap_lenrek | |
2016-08-08 | hgwebfs: make hgwebfs prompt for password | cinap_lenrek | |
2016-08-08 | webfs: avoid retry loops when we got a bad key in factotum | cinap_lenrek | |
2016-08-08 | webfs: include factotum key query in error string for 401/407 Unauthorized ↵ | cinap_lenrek | |
status | |||
2016-08-08 | authsrv(6): document session secret key derivation for p9sk1 and dp9ik | cinap_lenrek | |
2016-08-08 | mptrunc: normalize after mpassign to handle the case b==r | aiju | |
2016-08-06 | thread(2): threadgrp() -> threadgetgrp(), thanks jpm | cinap_lenrek | |
2016-08-05 | libauthsrv: ANAMELEN -> PASSWDLEN | cinap_lenrek | |
2016-08-04 | libauth: fix mount file-descriptor leak in auth_chuid() | cinap_lenrek | |
2016-08-04 | auth/login: add dp9ik key to sub factotum, get rid of temporary /srv file | cinap_lenrek | |
2016-08-04 | ape/libauth: add PASSWDLEN constant to compile passtokey.c from native ↵ | cinap_lenrek | |
libauthsrv (thanks lawler) | |||
2016-07-31 | auth: various cleanups, use common readcons() from libauthsrv, zero keys ↵ | cinap_lenrek | |
after use | |||
2016-07-31 | auth/secstore: use common readcons() routine from libauthsrv | cinap_lenrek | |
2016-07-31 | auth/factotum: use common readcons() function from libauthsrv | cinap_lenrek | |
2016-07-31 | libauthsrv: export common readcons() routine and introduce PASSWDLEN constant | cinap_lenrek | |
drawterm, factotum, secstore and the auth commands all had ther own implementation of readcons. we want to have one common function for this to avoid the duplication, so putting that in libauthsrv. introduce PASSWDLEN which makes the use more explicit than ANAMELEN. | |||
2016-07-24 | auth/changeuser: fix misleading print (secret is 31 chars max, not 256) | cinap_lenrek | |
2016-07-24 | devtls, devssl: make sure channel has ORDWR mode and is not a mount chan on ↵ | cinap_lenrek | |
fdtochan() | |||
2016-07-24 | swap: make sure swap chan has ORDWR mode on fdtochan() | cinap_lenrek | |
2016-07-24 | make error handling in 9p service loops consistent | cinap_lenrek | |
when we get eof, stop the loop immidiately and do not rely on the read to eventually return an error. when convM2S() fails to decode the message, error out and stop the loop. there is no point in continuing. | |||
2016-07-24 | upas/fs: remove checkmboxrefs() debugging code, properly handle errors in 9p ↵ | cinap_lenrek | |
loop | |||
2016-07-24 | ndb/dns: remove procname statistics and restart feature, cleanup 9p service loop | cinap_lenrek | |
given that the memory leaks have been fixed, theres no need for the obscure restart feature which is not reliable anyway. remove the code updating procname on each 9p request. handle convM2S error by exiting the service loop, dont read 9p channel after eof. | |||
2016-07-19 | kernel: dont pprint() into 9p channels | cinap_lenrek | |
when fd 2 (stderr) points to a mount channel, dont cause protocol confusion by dumping error strings into it. | |||
2016-07-15 | 5c: fix int -> uvlong cast bug (thanks to qwx on his patience on a the ↵ | cinap_lenrek | |
trouble session to narrowing it down) we used to not sign extend if the destination was unsigned uvlong, which is wrong. we have to sign extend only based on the signedness of the source (it gets propagated to vlong) this bug hit in hjfs in the newentry() function, causing file creation to fail with "create -- phase error": newentry(...) { uvlong sj; int si; ... sj = si = -1; ... } | |||
2016-07-15 | 5a: ROL instruction | cinap_lenrek | |
2016-07-10 | libsec: add scrypt password based key derivation function | cinap_lenrek | |
2016-07-08 | disk/prep: if no 9fat, reserve space for plan9 partition table in autopart ↵ | cinap_lenrek | |
(thanks Shamar) usually, the plan9 partition table is contained in the first 9fat partition after the pbs/fat header, but when no 9fat partition is requested, we have to make sure partitions wont overlap the partition table (start at sector offset >= 2). | |||
2016-07-08 | 5l: ROR instruction | cinap_lenrek | |
2016-07-05 | remove mpc.tab.h on mk clean | spew | |
2016-07-04 | add history for libregexp | spew | |