Page MenuHomeFreeBSD
Feed All Stories

Jul 2 2020

thj committed rS362899: MFC r362379:.
MFC r362379:
Jul 2 2020, 6:42 PM
thj committed rS362898: MFC r362379:.
MFC r362379:
Jul 2 2020, 6:40 PM
jbeich committed rP541055: devel/intel-graphics-compiler: update to 1.0.4241.
devel/intel-graphics-compiler: update to 1.0.4241
Jul 2 2020, 6:31 PM
cmt committed rP541054: update check_ssl_cert to 1.120.0.
update check_ssl_cert to 1.120.0
Jul 2 2020, 6:24 PM
yuri committed rP541053: devel/py-deepdiff: Update 5.0.0 -> 5.0.1.
devel/py-deepdiff: Update 5.0.0 -> 5.0.1
Jul 2 2020, 5:44 PM
yuri committed rP541052: www/authelia: Update 4.20.0 -> 4.21.0.
www/authelia: Update 4.20.0 -> 4.21.0
Jul 2 2020, 5:41 PM
jhixson committed rP541051: sysutils/mtpfs: update to use github.
sysutils/mtpfs: update to use github
Jul 2 2020, 5:38 PM
yuri committed rP541050: www/uwebsocket: Update 18.8.0 -> 18.9.0.
www/uwebsocket: Update 18.8.0 -> 18.9.0
Jul 2 2020, 5:37 PM
yuri committed rP541049: security/vuxml update: coturn CVE-2020-4067 for net/coturn.
security/vuxml update: coturn CVE-2020-4067 for net/coturn
Jul 2 2020, 5:33 PM
matthew committed rP541048: Update to 0.10.4.
Update to 0.10.4
Jul 2 2020, 5:14 PM
kevans added a comment to D25502: shm_open2: Implement SHM_GROW_ON_WRITE.

No discussion, just my own previous inspection when I was doing sealing stuff. Looking again, I see that you're correct -- the only thing that would seemingly break is libprocstat's procstat_get_shm_info_kvm.

Jul 2 2020, 5:12 PM
acm committed rP541047: - Update to 6.2.1.
- Update to 6.2.1
Jul 2 2020, 5:11 PM
lwhsu committed rP541046: Restore ipcdir to /var/run.
Restore ipcdir to /var/run
Jul 2 2020, 5:05 PM
kib added a comment to D25502: shm_open2: Implement SHM_GROW_ON_WRITE.

My recollection was that we can't really change struct shmfd like that on stable without KBI break, and we should probably fix it at least on stable/12; leading to "ok, just validate it for the MFC then we can drop the check and expand shm_size after."

Jul 2 2020, 5:00 PM
acm committed rP541045: - Update to 2.2.4.
- Update to 2.2.4
Jul 2 2020, 4:45 PM
kevans added a comment to D25502: shm_open2: Implement SHM_GROW_ON_WRITE.
In D25502#564823, @kib wrote:
In D25502#564145, @kib wrote:

For this current diff, it occurs to me that this specific instance should be checking for overflow of SIZE_MAX rather than OFF_MAX since shm_size is a size_t. I'll make that tweak pre-commit.

Uhh. So the check in shm_dotruncate_locked() is boosted, and also we could have mis-synchronization between shm_object size and shm_size.

I'll (separately) add a check for length > SIZE_MAX in shm_dotruncate_locked and kick back an EFBIG there; is there another source of mis-synchronization for shm_object size and shm_size, or are you generally referring to the truncation of shm_size that could happen when assigning the off_t length to 32-bit quantity?

I am not sure why check for SIZE_MAX and not change shm_size type to either off_t or better vm_ooffset_t.

Jul 2 2020, 4:40 PM
kib added a comment to D25502: shm_open2: Implement SHM_GROW_ON_WRITE.
In D25502#564145, @kib wrote:

For this current diff, it occurs to me that this specific instance should be checking for overflow of SIZE_MAX rather than OFF_MAX since shm_size is a size_t. I'll make that tweak pre-commit.

Uhh. So the check in shm_dotruncate_locked() is boosted, and also we could have mis-synchronization between shm_object size and shm_size.

I'll (separately) add a check for length > SIZE_MAX in shm_dotruncate_locked and kick back an EFBIG there; is there another source of mis-synchronization for shm_object size and shm_size, or are you generally referring to the truncation of shm_size that could happen when assigning the off_t length to 32-bit quantity?

Jul 2 2020, 4:35 PM
fernape requested review of D25548: time(1): Add EXAMPLES section.
Jul 2 2020, 4:26 PM
0mp committed rS362897: MFC 362324:.
MFC 362324:
Jul 2 2020, 4:18 PM
freebsdphab-AX9_cmx.ietfng.org updated the diff for D25544: riscv: look for bootargs in FDT.

Sorry, newbie learning way around arc. Seems it grabbed an unintended commit.

Jul 2 2020, 4:16 PM · riscv
0mp committed rS362896: MFC 362324:.
MFC 362324:
Jul 2 2020, 4:16 PM
freebsdphab-AX9_cmx.ietfng.org updated the diff for D25544: riscv: look for bootargs in FDT.

Slightly less code motion; tested using qemu "-append -s" on FreeBSD machine I'd forgotten about.

Jul 2 2020, 4:15 PM · riscv
0mp committed rS362895: MFC 362325:.
MFC 362325:
Jul 2 2020, 4:14 PM
0mp committed rS362894: MFC 362325:.
MFC 362325:
Jul 2 2020, 4:13 PM
0mp committed rS362893: MFC 362321:.
MFC 362321:
Jul 2 2020, 4:11 PM
0mp committed rS362892: MFC 362321:.
MFC 362321:
Jul 2 2020, 4:11 PM
kevans added a comment to D25502: shm_open2: Implement SHM_GROW_ON_WRITE.
In D25502#564145, @kib wrote:
In D25502#563799, @kib wrote:

I realized that we do not check for the overflow in vn_io_fault() either.
I am fine with this commit as-is, and you could fix vn_io_fault() (if needed) later.
For instance, despite no check on filedesc/VFS layer, ffs_write() eventually does

	if ((uoff_t)uio->uio_offset + uio->uio_resid > fs->fs_maxfilesize)
		return (EFBIG);

which probably is good enough to avoid corruption for FFS.
But rangelocks are probably not immune.

Sure- I'll check out vn_io_fault later. I'm somewhat unsure about what to do there; it seems like in some cases (e.g. shmfd) it could make sense to allow the overflow because the file won't grow like most traditional filesystems so we'll just truncate the write to the pre-allocated size of the file. It would be simpler to not care about shmfd being an odd duck.

vn_io_fault() is not used for shmfd.

My general concern there is that overflow for end causes rangelocks to misbehave. This is besides a possibility that some filesystems might be not prepared to this as well.

Jul 2 2020, 3:40 PM
romain committed rP541044: Update to 2.1.2.
Update to 2.1.2
Jul 2 2020, 3:09 PM
ohauer committed rP541043: - portlint.
- portlint
Jul 2 2020, 3:00 PM
ohauer committed rP541042: - update with patches to current github version.
- update with patches to current github version
Jul 2 2020, 2:55 PM
ohauer committed rP541041: - update to 5.04.
- update to 5.04
Jul 2 2020, 2:50 PM
jrtc27 added inline comments to D25416: Make access to VirtIO configuration to mips architecture..
Jul 2 2020, 2:48 PM · PowerPC, MIPS
afscoelho_gmail.com added inline comments to D25416: Make access to VirtIO configuration to mips architecture..
Jul 2 2020, 2:45 PM · PowerPC, MIPS
emaste added inline comments to D25273: amd64 pmap: LA57 AKA 5-level paging.
Jul 2 2020, 2:20 PM
kib added inline comments to D25273: amd64 pmap: LA57 AKA 5-level paging.
Jul 2 2020, 2:07 PM
olgeni committed rP541040: Update devel/etcd34 to version 3.4.9..
Update devel/etcd34 to version 3.4.9.
Jul 2 2020, 1:41 PM
olgeni committed rP541039: Update devel/etcd33 to version 3.3.22..
Update devel/etcd33 to version 3.3.22.
Jul 2 2020, 1:41 PM
emaste added inline comments to D25273: amd64 pmap: LA57 AKA 5-level paging.
Jul 2 2020, 1:40 PM
jhale committed rP541038: MFH: r541036.
MFH: r541036
Jul 2 2020, 1:37 PM
olgeni committed rP541037: Update sysutils/webmin to version 1.950..
Update sysutils/webmin to version 1.950.
Jul 2 2020, 1:36 PM
jhale committed rP541036: audio/picard-plugins: Fix distinfo.
audio/picard-plugins: Fix distinfo
Jul 2 2020, 1:35 PM
mjg updated the diff for D23915: vfs: fully smr-protected path lookup.
  • assorted cleanups
  • fix a ref leak on fallback error
Jul 2 2020, 1:18 PM
asomers committed rS362891: Fix page fault in zfsctl_snapdir_getattr.
Fix page fault in zfsctl_snapdir_getattr
Jul 2 2020, 1:18 PM
asomers closed D25543: Fix page fault in zfsctl_snapdir_getattr.
Jul 2 2020, 1:17 PM
mjg committed rS362890: cred: add a prediction to crfree for td->td_realucred == cr.
cred: add a prediction to crfree for td->td_realucred == cr
Jul 2 2020, 12:58 PM
mjg committed rS362889: cache: add missing call to cache_ncp_invalid for negative hits.
cache: add missing call to cache_ncp_invalid for negative hits
Jul 2 2020, 12:56 PM
mjg committed rS362888: cache: fix misplaced fence in cache_ncp_invalidate.
cache: fix misplaced fence in cache_ncp_invalidate
Jul 2 2020, 12:55 PM
lwhsu committed rP541035: Update to 0.7.1.
Update to 0.7.1
Jul 2 2020, 12:29 PM
gerald committed rP541034: Really remove files/patch-dlls_ntdll (a temporary build fix) that I.
Really remove files/patch-dlls_ntdll (a temporary build fix) that I
Jul 2 2020, 11:25 AM
rene committed rP541028: Branch 2020Q3.
Branch 2020Q3
Jul 2 2020, 11:17 AM
jhibbits accepted D25545: [PowerPC] XIVE dispatch tweaks.
Jul 2 2020, 11:01 AM · PowerPC
kib committed rS362887: mlx5_core: remove unneccessary LFENCE instruction..
mlx5_core: remove unneccessary LFENCE instruction.
Jul 2 2020, 10:45 AM
kib committed rS362886: linuxkpi: improvements for linux_pid_task() and linux_get_pid_task()..
linuxkpi: improvements for linux_pid_task() and linux_get_pid_task().
Jul 2 2020, 10:43 AM
kib closed D25534: linuxkpi: improvements for linux_pid_task() and linux_get_pid_task()..
Jul 2 2020, 10:43 AM
kib committed rS362885: Use tdfind() in pget()..
Use tdfind() in pget().
Jul 2 2020, 10:41 AM
kib closed D25532: Use tdfind() in pget()..
Jul 2 2020, 10:41 AM
AMDmi3 committed rP541033: - Update WWW.
- Update WWW
Jul 2 2020, 10:35 AM
danfe committed rP541032: Update to version 1.46..
Update to version 1.46.
Jul 2 2020, 10:29 AM
rene committed rP541031: Remove expired port:.
Remove expired port:
Jul 2 2020, 10:27 AM
joneum committed rP541030: MFH: r541029.
MFH: r541029
Jul 2 2020, 10:22 AM
joneum committed rP541029: Update to 4.3.2.
Update to 4.3.2
Jul 2 2020, 10:21 AM
andrew updated the diff for D25455: Add support for re-resolving arm64 ifuncs when all CPUs are online.

Add untested amd64 support

Jul 2 2020, 9:48 AM
AMDmi3 committed rP541027: - Update WWW.
- Update WWW
Jul 2 2020, 9:35 AM
danfe committed rP541026: Update to version 0.9.9..
Update to version 0.9.9.
Jul 2 2020, 9:28 AM
kib updated the diff for D25273: amd64 pmap: LA57 AKA 5-level paging.

bhyve: Handle guest' LA57 paging mode.
This is in fact independent of the rest of the patch, since guest can set the bit in %cr4 at will.

Jul 2 2020, 9:09 AM
joneum committed rP541025: Add entrx for dns/powerdns-recursor.
Add entrx for dns/powerdns-recursor
Jul 2 2020, 8:58 AM
joneum committed rP541024: Update to 6.4.152.
Update to 6.4.152
Jul 2 2020, 8:55 AM
wen committed rP541023: - Update to 0.22.0.
- Update to 0.22.0
Jul 2 2020, 8:51 AM
kib updated the diff for D24652: Non-transparent superpages support..

Refresh patch after rebase. Fix conflicts in vm_map.c.

Jul 2 2020, 8:46 AM
bapt committed rP541022: update to 0.7.1.
update to 0.7.1
Jul 2 2020, 8:46 AM
lwhsu committed rP541021: Update to 1.23.1.
Update to 1.23.1
Jul 2 2020, 8:21 AM
danfe committed rP541020: - Update to version 6.3 and take maintainership.
- Update to version 6.3 and take maintainership
Jul 2 2020, 8:03 AM
melifaro added a comment to D25535: Introduce nhop_ref_locked_object()..

Thank you for raising this diff! Was going to do the same, but you managed to do it faster :-)
LGTM, please see the naming comment :-)

Jul 2 2020, 7:32 AM
joneum committed rP541019: Update to 26.4.5.
Update to 26.4.5
Jul 2 2020, 7:29 AM
lwhsu committed rP541018: Update to 0.14.5.
Update to 0.14.5
Jul 2 2020, 7:20 AM
lwhsu committed rP541017: Update to 0.14.5.
Update to 0.14.5
Jul 2 2020, 7:19 AM
tsoome committed rS362884: loader: zfs reader does not need BOOT2 bits.
loader: zfs reader does not need BOOT2 bits
Jul 2 2020, 7:16 AM
kp added a comment to D25531: riscv plic: Do not complete interrupts until the interrupt handler has run.

Also, are we guaranteed to have the *post_ithread* hook run on the same hart? If not we'll complete for the wrong hart (though in practice all implementations I know of only track claims on a global basis so don't care which hart's claim/complete register you write to).

Jul 2 2020, 7:14 AM
tsoome committed rS362883: loader: potential memory leak and check return values.
loader: potential memory leak and check return values
Jul 2 2020, 7:04 AM
fernape committed rP541016: science/afni: update to 20.1.18.
science/afni: update to 20.1.18
Jul 2 2020, 6:56 AM
mm committed rP541015: Update ProFTPd to version 1.3.6d.
Update ProFTPd to version 1.3.6d
Jul 2 2020, 6:52 AM
danfe committed rP541014: - Update to version 0.7.2, improve the COMMENT.
- Update to version 0.7.2, improve the COMMENT
Jul 2 2020, 6:09 AM
nc updated the diff for D25546: Transition from rtrequest1_fib() to rib_action().

Well, fixed the panics (which happened on BOOT on the first patch).

Jul 2 2020, 5:34 AM · network
danfe committed rP541013: Forgot to remove stale patches in r541010..
Forgot to remove stale patches in r541010.
Jul 2 2020, 5:31 AM
nc added a comment to D25546: Transition from rtrequest1_fib() to rib_action().

This patch currently panics and needs revision

Jul 2 2020, 5:15 AM · network
avg accepted D25543: Fix page fault in zfsctl_snapdir_getattr.

Thank you!

Jul 2 2020, 5:12 AM
bdragon added a project to D25547: [PowerPC] Fix translation-related crashes during startup: PowerPC.
Jul 2 2020, 5:02 AM · PowerPC
bdragon requested review of D25547: [PowerPC] Fix translation-related crashes during startup.
Jul 2 2020, 5:02 AM · PowerPC
ashish committed rP541012: - Update to git snapshot e98ddd6.
- Update to git snapshot e98ddd6
Jul 2 2020, 4:52 AM
nc requested review of D25546: Transition from rtrequest1_fib() to rib_action().
Jul 2 2020, 4:43 AM · network
danfe committed rP541011: In r458896, `devel/p5-File-HomeDir' had been added as TEST_DEPENDS, but.
In r458896, `devel/p5-File-HomeDir' had been added as TEST_DEPENDS, but
Jul 2 2020, 4:42 AM
bdragon requested review of D25545: [PowerPC] XIVE dispatch tweaks.
Jul 2 2020, 4:41 AM · PowerPC
freebsdphab-AX9_cmx.ietfng.org updated the diff for D25544: riscv: look for bootargs in FDT.

Revised in light of jrtc27's comments. Unfortunately, I lack a FreeBSD box to build and test this on (sorry, CheriBSD builds fine and I didn't think about our being lagged relative to upstream); perhaps someone who does would be so kind as to let me know if I've broken something?

Jul 2 2020, 4:18 AM · riscv
freebsdphab-AX9_cmx.ietfng.org updated the test plan for D25544: riscv: look for bootargs in FDT.
Jul 2 2020, 4:16 AM · riscv
grehan accepted D25530: Fix LOR with bpf detach.
Jul 2 2020, 3:59 AM
danfe committed rP541010: - Update `devel/p5-Parse-Yapp' to version 1.21.
- Update `devel/p5-Parse-Yapp' to version 1.21
Jul 2 2020, 3:56 AM
jbeich committed rP541009: multimedia/aom: drop release reminder after r534700/r535836.
multimedia/aom: drop release reminder after r534700/r535836
Jul 2 2020, 3:47 AM
kib added inline comments to D25455: Add support for re-resolving arm64 ifuncs when all CPUs are online.
Jul 2 2020, 3:04 AM
kib accepted D25537: Consolidate duplicated logic in csu Makefiles to lib/csu/Makefile.inc..
Jul 2 2020, 3:02 AM
jbeich committed rP541008: MFH: r535269.
MFH: r535269
Jul 2 2020, 2:57 AM