summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-06-17aligment -> alignmentMiod Vallat
2010-06-17- start sentence with a capital letterJason McIntyre
- zap trailing whitespace
2010-06-17Correct sizing of object to be allocated by calloc(), replacingDamien Miller
sizeof(state) with sizeof(*state). This worked by accident since the struct contained a single int at present, but could have broken in the future. patch from hyc AT symas.com
2010-06-17document WRKDIR_LINKNAME; ok espie@ jmc@william
2010-06-16permit e.g. -inet6 syntax by slurping all lines not just someTodd T. Fries
noticed by rhsv6 at hushmail dot com, ok sthen@
2010-06-16Mdocdate is not a valid reason to generate a new MAKEDEV.8, finally noticedTodd T. Fries
2010-06-16Add support to use sasyncd(8) with iked(8) instead of isakmpd(8). TheReyk Floeter
new config option "control isakmpd|iked|all|none" in sasyncd.conf(5) is used to set the mode; the default is to control isakmpd like before. When controlling iked, sasyncd connects to the daemon using the imsg socket and sends imsgs - this is easy because the imsg framework has been imported into libutil. iked(8) already includes the important bits to work with sasyncd(8) (the active/passive mode option in ikectl). manpage bits ok jsg@ ok jsg@
2010-06-16fully document SUBST_CMDMarc Espie
2010-06-16document PROGRESS_METER and a few other new changesMarc Espie
2010-06-16Always check both the return value of scsi_do_mode_sense() and theKenneth R Westerback
NULL'ness of the pointer to the actual page data. Fixes a NULL deref when trying to set caching on my ASUS eeePC 1000HE's SD slot. ok dlg@
2010-06-16Bring ststrategy() into line with sdstrategy() and cdstrategy(), makingKenneth R Westerback
sure buf's are correctly completed. Feedback from Matthew Dempsky. ok dlg@
2010-06-15- sync lua moduleJasper Lievisse Adriaanse
2010-06-15Move around some functions to ease re-use from ldapctl.Martin Hedenfal
2010-06-15Verify that a transaction passed to btree_tnx_{put,del} is not readonly.Martin Hedenfal
2010-06-15Make modify and simple auth requests open their own transactions, as searchMartin Hedenfal
already does. Trigger a reopen imsg request if either the data or index databases are compacted. Queue the failed request and try again when the file is reopened. Compaction can now be done by a separate process, and ldapd will pick up the change and reopen the file.
2010-06-15remove unused uuid_hash function, found by lintMartin Hedenfal
2010-06-15Implement support in the parent to (re-)open database files on behalf ofMartin Hedenfal
the unprivileged child over imsg. Part of a larger change that will fix database compaction.
2010-06-15EV_READ and EV_WRITE are not mutually exclusive, so check if we get both inMartin Hedenfal
the same event.
2010-06-15When fsck_ffs is used with disklabel UIDs the hot root test fails inJoel Sing
blockcheck() since we try to stat() the UID. This means that we fail to reload the mount if we have indeed cleaned the read-only root file system. To avoid this, rerun blockcheck() if the real name is different to the original device name, once we have opened the device with opendev(3). ok krw@ thib@
2010-06-15softraid doesnt provide disk cache settings to tweak, mark those ioctls asDavid Gwynne
not supported. this prevents a panic caused by recursively entering the ioctl handler that now happens on boot when sd tries to enable write cache on all disks. found by ckeuthe@ tested by todd@
2010-06-15various Huawei 3g devices share a usb id, some of them need DEV_UMASS5 for ↵Felix Kronlage
proper initialization, old ones still work with DEV_UMASS5 as well. This enables a whole bunch of newer huawei devices to work. Also reported on misc@ by David Zeillinger. discussed with jsg@ and mpf@ ok mpf@
2010-06-15handle lost+foundMarc Espie
2010-06-15it's okay for partial- packages to be a bit weird...Marc Espie
2010-06-15fix an mdoc macroJonathan Gray
2010-06-15typo2Marc Espie
2010-06-15with more primitive primitives, we don't need to override so much...Marc Espie
2010-06-15typoMarc Espie
2010-06-15more printing changes.Marc Espie
move log operations into their own file, since they're used outside of pkg_add/pkg_delete by pkg_check. move all system stuff to State, so that printing can be localized/controlled. Create primitives _print, _errprint, _fatal for overriding output, without localization. Accordingly, move a lot of code out of Error. We should also move Unlink and Copy eventually.
2010-06-15fix count of deinstalling packages.Marc Espie
2010-06-15push @todo2 global into state. name other options with sensible names.Marc Espie
2010-06-15yet another path, maybe to changeMarc Espie
2010-06-15enable the write cache on disks during attach.David Gwynne
requested by deraadt@ ok krw@ marco@
2010-06-15rearrange attach so that the SDEV_VIRTUAL flag is set during scsi_probe,David Gwynne
rather than as a scan of all attached devices after scsibus is attached. this will allow the cache enabling on virtual disks to run as part of the disks attach routine.
2010-06-15dont pass the dev_t from the scsi device drivers into the midlayer forDavid Gwynne
ioctl requests, and dont pass the proc pointers around for any ioctl requests in scsi land at all. neither were used, so trim the fat. ok krw@ marco@
2010-06-15fix keyword sort orderReyk Floeter
2010-06-15only compare the SPIi in the SA treeReyk Floeter
2010-06-14check if cert is available and validReyk Floeter
2010-06-14Initiator mode with certificates; needs more work but works.Reyk Floeter
2010-06-14Last change erroneously used the target argument for looking up theNicholas Marriott
client which caused pipe-pane to fail when used from the command line. Instead pass NULL which should use the current client. Spotted by Tiago Cunha.
2010-06-14Add a missing command and some missing Ic, from Tiago Cunha.Nicholas Marriott
2010-06-14zap empty message...Marc Espie
2010-06-14Initial support for initiator mode which allows to run iked as aReyk Floeter
"client" or to configure iked to iked (OpenBSD to OpenBSD) IKEv2 VPNs. It currently only supports psk (pre-shared keys) and no certificates, doesn't do any rekeying or SA timeouts, and needs more cleanup. So it is not quite production ready yet - but ready for simple tests...
2010-06-14the ikesa prf config option is currently brokenReyk Floeter
2010-06-14fix my previous commit, i forgot BIP, so instead of enumeratingDamien Bergamini
what is not supported as a group cipher, enumerate what is supported.
2010-06-14Add commands to create/delete/install/import keys withoutJonathan Gray
involving certificates as suggested by reyk and don't recreate private keys if a key already exists. ok reyk@
2010-06-14do not try to associate with an AP using an unsupported group cipher,Damien Bergamini
otherwise we will panic in ieee80211_add_rsn_body(). this may be the cause of a panic seen by reyk@ though i'm not 100% sure.
2010-06-14plug a memleak, free the devname when we succeed withThordur I. Bjornsson
the ioctl. also remove an uneeded if (devname) check. ok jsing@
2010-06-14fix block length for AESReyk Floeter
2010-06-14fix EAP responder modeReyk Floeter
2010-06-14syncTodd T. Fries