=== genii is now known as genii-core === sem2peie- is now known as sem2peie === sem2peie- is now known as sem2peie === RikMills__ is now known as RikMills [10:31] I am looking for a sponsor for vim: https://bugs.launchpad.net/ubuntu/+source/vim/+bug/1944419 [10:31] Launchpad bug 1944419 in vim (Ubuntu) "vim: impish missing in debchangelog.vim" [Undecided, New] [10:32] xypron: that looks good, but Impish is in freeze now, and vim is seeded. So it needs to wait. [10:33] rbasak: thanks for reviewing. So it could be sponsored directly after release date? [10:35] xypron: probably best to do it after beta is released, before final release. [10:35] rbasak: thanks [10:35] xypron: https://lists.ubuntu.com/archives/ubuntu-devel-announce/2021-September/001297.html has the details if you haven't seen that === cpaelzer_ is now known as cpaelzer [10:54] rbasak, xypron, the release team recommendation has always been 'just upload, queue will be reviewed when suitable', I don't think we should restain from queuing changes during freezes [11:05] seb128: the email says "Please hold off [11:05] with everything else until after we release on Thursday." [11:05] Which I take to mean "don't upload". [11:05] Otherwise "please hold off" has no meaning for non-release-team uploaders. [11:05] rbasak, you are right, I've read the email now and I understand it like that [11:06] my memory failed me there or recommendations changed [11:06] No worries! [14:28] bryceh, cjwatson: I've made some progress in determining the issues with the new openssh merge from Debian. It appears to be an actual regression with openssh built with glibc 2.34 running on kernels that don't have the close_range syscall. [14:30] This appears when trying to run sshd in a chroot. Strace shows an ENOSYS when calling close_from, and then libc's closefrom tries to open /proc/self/fd in the chroot, which doesn't exist [14:31] What I'm still failing to understand is why we're only seeing the issue on armhf. I'll keep digging on that part, but wanted to give you updated [14:31] keep* you updated [14:42] jawn-smith: Isn't it likely just the seccomp filter? [14:42] It's not uncommon for that to need to differ across architectures. [14:43] cjwatson: I will look into that. The issue exists upstream as well, just FYI [14:43] jawn-smith: Indeed [14:44] jawn-smith: It probably just needs a patch sent upstream to add close_range to the seccomp filter with suitable rationale, which we can then cherry-pick [14:44] cjwatson: Excellent I'll take a look at that. Thanks! [14:45] jawn-smith, thanks for the update [14:52] (FWIW I am working on a full upstream update, but need to first sort out the GSSAPI patch for which we share maintenance with Fedora) [16:16] oSoMoN: Do you know how to test https://code.launchpad.net/~osomon/ubuntu-release-upgrader/+git/ubuntu-release-upgrader/+merge/408838 ? [16:18] bdmurray, I did run the unit tests, and also ran a dist-upgrade in a hirsute VM per instructions in README.devel [16:18] are there other types of tests that can be run? [16:19] Oh, I hadn't reloaded since comment #6 === sem2peie- is now known as sem2peie === sem2peie- is now known as sem2peie [17:58] juliank: Sorry about the bad patch for packagekit. I have it fixed now, submitted upstream. I think it's safe to wait until after beta to upload. [18:02] Eickmeyer: ack, ping me after the beta in case I forget to sponsor a new patch [18:07] juliank: Thanks. :) [20:08] what is the link to view oops ID's again? I can't seem to find it going to errors.ubuntu.com ? I was added to the group to oops for snaps a while ago but can't remember the way to view a particular oops given the ID [20:08] ijohnson[m]: oops.canonical.com and there's a text box [20:09] ahhh that's the link thanks @cjwatson [20:09] Though the snap API is mostly on Sentry nowadays, I thought? [20:09] SSO and LP use oops [20:09] oh hmm [20:10] I am trying to debug a failure from snapd with the OOPS ID fc126488-17ef-11ec-bc20-fa163e983629 [20:10] I guess next question then is how do I access sentry :-) [20:11] https://errors.ubuntu.com/oops/fc126488-17ef-11ec-bc20-fa163e983629 [20:11] ah perfect thanks @bdmurray [20:11] Ah OK, so that's snapd client rather than snap store API, I see [20:13] yeah it came from snapd after failing to install a snap [20:41] It appears the latest gtk+3.0 upload broke Electron-based apps. bug 1944468 [20:41] Bug 1944468 in gtk+3.0 (Ubuntu) "Electron applications all crash upon launch" [High, New] https://launchpad.net/bugs/1944468 [20:58] does downgrading the gtk+3.0 packages make it work again? [21:29] jawn-smith, cjwatson: we only see it on armhf because that is the only environment we test old kernel + new userland in [21:29] jawn-smith, cjwatson: there is nothing seccomp or architecture specific in all this aiui [21:29] sarnold: I need to try that, but I'd have to find the package first. [21:30] mwhudson: thanks for the input. I hadn't realized armhf was the only environment with old kernel + new userland [21:30] back to the upstream bugs plan then [21:30] jawn-smith: please (i mean they might point fingers at each other but well) [21:32] mwhudson: That would explain why it only shows up on this architecture, but the ENOSYS still indicates that it's likely to do with OpenSSH's seccomp sandbox, surely [21:32] Or do I have the wrong end of the stick somehow? [21:33] cjwatson: close_range was only added in 5.8 or somethign? [21:33] mwhudson: 5.9 [21:33] Eickmeyer: the ones here? https://launchpad.net/ubuntu/+source/gtk+3.0/3.24.29-1ubuntu1/+build/21598221 [21:33] jawn-smith: thanks for knowing the details :) [21:33] mwhudson: Oh I see, now that I look at libc's closefrom.c it makes sense [21:34] bdmurray: Yeah, those. Actually, I get you to it, I'm there already [21:34] *beat [21:34] /s/get/beat [21:34] So the real difference is that now OpenSSH is using libc's closefrom when it previously used its own version? [21:34] cjwatson: yeah, the "eh /proc/self/fd isn't there let's do nothing" is certainly a design choice of some kind [21:35] In that case telling configure that libc doesn't have closefrom would also be a viable workaround here, given the limited environment in sshd's network monitor [21:35] yeah i think that's probably best [21:36] Configure with ac_cv_func_closefrom=false or so [21:36] Should still file an upstream bug since maybe they'll want to just avoid glibc's closefrom or maybe do something else, but that would be an easy packaging fix [21:37] Or indeed perhaps use glibc's closefrom everywhere except the sshd network monitor with its weird environment [21:37] *sigh* downgrading didn't work. Back to the drawing board. [21:38] Unless I need to reboot to clear the gtk cache. [21:38] (Or wherever it is. I'm assuming it must be in the monitor because otherwise you'd think /proc/self/fd would exist) [21:38] cjwatson: to make sure I have this straight: I should file the upstream bugs and also make an update to our openssh package to configure differently [21:39] Well, see if ac_cv_func_closefrom=false fixes it first, especially if you have some way to run tests on armhf without making an upload [21:39] cjwatson: the test case is running sftp chrooted [21:40] cjwatson: that's correct, running sshd -oChrootDirectory=/var/run and then attempting to sftp from that [21:40] this sort of thing https://www.thegeekstuff.com/2012/03/chroot-sftp-setup/ [21:40] But if that does the job then I think an upstream bug would be worthwhile explaining that glibc's new closefrom implementation breaks openssh's regression tests, , here's what we did to workaround it but maybe you have a better idea, would be worthwhile [21:40] also, I have an unreasonable number of Pi's here so I can definitely recreate this locally without having to do an upload [21:40] OK, that's not the monitor, different kind of restricted environment [21:41] The monitor is the thing that sshd's privilege separation runs so that it can do preauth parsing of network packets with significantly reduced scope for compromise in case of parsing bugs [21:42] From what you've both said, I'd suggest building upstream master from git and running its regression tests on an x86 system with latest glibc and pre-5.9 kernel [21:43] That would make for a nice standalone bug report [21:43] cjwatson: I can do that [21:43] And nobody would have to spend time arguing whether if it's arm-specific weirdness [21:43] s/ if// [21:50] sarnold, bdmurray: The downgrade didn't work, so I tried downgrading nvidia drivers from 470 to 460, no change in behavior. [21:57] Meaning, it's not GTK, but maybe someone else can help me figure this out because I'm coming up on EOD. [22:31] Eickmeyer: dang :(