Hírolvasó
Security updates for Wednesday
Security updates have been issued by Debian (imagemagick and ruby-websocket-extensions), Fedora (libetpan, LibRaw, and php), Gentoo (nss), Mageia (apache, ark, clamav, claws-mail, dovecot, firefox, firejail, freerdp, golang, jasper, kernel, libssh, libx11, postgresql-jdbc, python-rstlib, radare2, roundcubemail, squid, targetcli, thunderbird, tomcat, and x11-server), Red Hat (rh-mysql80-mysql), SUSE (dovecot22, freerdp, libvirt, and postgresql12), and Ubuntu (curl and linux-hwe, linux-azure-5.3, linux-gke-5.3).
Walleij: How the ARM32 kernel starts
Linus Walleij continues
his exploration of the boot process for the 32-bit Arm kernel.
"BAM! The MMU is on. The next instruction (which is incidentally an
instruction cache flush) will be executed from virtual memory. We don’t
notice anything at first, but we are executing in virtual memory. When we
return by jumping to the address passed in r13, we enter
__mmap_switched at the virtual memory address of this function,
somewhere below PAGE_OFFSET (typically 0xC0nnnnnn). We
can now facilitate absolute addressing: the kernel is executing as
intended."
[$] Voxel plotting with gnuplot 5.4
In this followup to our coverage of the
release of
gnuplot 5.4, we look more deeply at
one of the new features: voxel plots. We only
briefly touched on these plots in that article, but they are the most conspicuous addition in
this release of
the free-software graphing tool.
Voxel plotting provides multiple ways to visualize 3D data, so it is worth
looking at this new plot type in more detail.
The Rust language gets its own foundation
The Rust blog announces
the creation of an independent foundation for the language. "This
foundation’s first task will be something Rust is already great at: taking
ownership. This time, the resource is legal, rather than something in a
program. The various trademarks and domain names associated with Rust,
Cargo, and crates.io will move into the foundation, which will also take
financial responsibility for the costs they incur. We see this first
iteration of the foundation as just the beginning. There’s a lot of
possibilities for growing the role of the foundation, and we’re excited to
explore those in the future."
Security updates for Tuesday
Security updates have been issued by Debian (sane-backends), Fedora (kernel, LibRaw, and wob), openSUSE (balsa, hylafax+, postgresql, postgresql96, postgresql10, postgresql12, and postgresql96, postgresql10 and postgresql12), Oracle (.NET Core 3.1), Red Hat (bash and bind), SUSE (dovecot23, firefox, fwupd, postgresql10, postgresql12, python-azure-agent, and zabbix), and Ubuntu (ark, gnome-shell, libonig, linux, linux-aws, linux-kvm, linux-lts-xenial, linux-raspi2, linux-snapdragon, linux-gke-5.0, linux-oem-osp1, and software-properties).
[$] Searching code with Sourcegraph
Sourcegraph is a tool for
searching and navigating around large code bases.
The tool has various search
methods, including regular-expression search, and "structural search",
which is
a relatively new technique that is language-aware.
The open-source core of
the tool comes
with code search, go-to-definition and other "code
intelligence" features, which provide ways for developers to make
sense of multi-repository code bases. Sourcegraph's code-searching tools
can show documentation for
functions and methods on mouse hover and allow developers to
quickly jump to definitions or to find all references to a particular
identifier.
[$] 5.9 Merge window, part 2
By the time Linus Torvalds released 5.9-rc1
and closed the merge window for this cycle, 12,866 non-merge changesets had
been pulled into the mainline repository. Nearly 9,000 of those came in
after the first 5.9 merge-window summary
was written. Clearly the kernel-development community remains busy. Much
of what was merged takes the form of cleanups and restructuring, as always,
but there was also a substantial set of new features.
Security updates for Monday
Security updates have been issued by Debian (dovecot, htmlunit, jruby, libetpan, lucene-solr, net-snmp, and posgresql-9.6), Fedora (firefox, nss, qt, and thunderbird), Mageia (glib-networking, mumble, webkit2, and znc), openSUSE (balsa, chromium, firejail, hylafax+, libreoffice, libX11, perl-XML-Twig, thunderbird, wireshark, and xrdp), Red Hat (libvncserver), SUSE (libvirt and perl-PlRPC), and Ubuntu (dovecot and salt).
Kdenlive 20.08 released
Version
20.08 of the Kdenlive video editor is available. "Kdenlive 20.08
is out with nifty features like Interface Layouts, Multiple Audio Stream
support, Cached data management and Zoombars in the Clip Monitor and
Effects Panel but one may argue that the highlights of this release are
stability and interface improvements".
LibreSSL documentation status update
More than six years ago, LibreSSL was forked from OpenSSL, and almost two years ago, i explained the status of LibreSSL documentation during EuroBSDCon 2018 in Bucuresti. So it seems providing an update might be in order.
Kernel prepatch 5.9-rc1
Linux has released the 5.9-rc1 kernel
prepatch and closed the merge window for this development cycle.
"This merge window felt a lot more normal than 5.8, and all the stats
confirm that it seems to be the usual size." In the end, 12,866
non-merge changesets were pulled for 5.9-rc1, as compared to 14,206 for
5.8-rc1.
[$] PHP Debugging using Xdebug
While PHP does not come with a full toolkit for debugging and profiling, an open-source
project has existed almost as long as PHP to provide both:
Xdebug. Created and maintained by PHP core
developer Derick Rethans, it offers remote debugging, stack traces,
profiling, and more. It is a project that anyone doing PHP development would
benefit from using.
Security updates for Friday
Security updates have been issued by Debian (squid3), Fedora (lilypond and python3), openSUSE (xen), SUSE (libreoffice, libvirt, webkit2gtk3, xen, and xerces-c), and Ubuntu (apache2).
[$] Theoretical vs. practical cryptography in the kernel
Shortly before the release of the 5.8 kernel, a brief patch to a
pseudo-random-number generator (PRNG) used by the networking stack was quietly
applied to the kernel. As is the norm for such things, the changelog gave
no indication that a security vulnerability had been fixed, but that turns
out indeed to be the case. The resulting controversy had little to do with
the original vulnerability, though, and everything to do with how
cryptographic security is managed in the kernel. Figuring prominently in
the discussion was
the question of whether theoretical security can undermine security in the
real world.
Holdgraf: Announcing the new Jupyter Book
On the Jupyter blog, Chris Holdgraf announces a rewrite of the Jupyter Book project. LWN looked at Jupyter and its interactive notebooks for Python and other languages back in 2018; Jupyter Book extends the notebook idea. "Jupyter Book is an open source project for building beautiful, publication-quality books, websites, and documents from source material that contains computational content. With this post, we’re happy to announce that Jupyter Book has been re-written from the ground up, making it easier to install, faster to use, and able to create more complex publishing content in your books. It is now supported by the Executable Book Project, an open community that builds open source tools for interactive and executable documents in the Jupyter ecosystem and beyond."
Walleij: How the ARM32 Linux kernel decompresses
For those who are into the details: here is a
step-by-step guide through the process of decompressing an Arm kernel
and getting ready to boot from Linus Walleij. "Next the
decompression code sets up a page table, if it is possible to fit one over
the whole uncompressed+compressed kernel image. The page table is not for
virtual memory, but for enabling cache, which is then turned on. The
decompression will for natural reasons be much faster if we can use
cache."
QEMU 5.1.0 released
Version 5.1.0 of
the QEMU processor emulator is out. "This release contains 2500+
commits from 235 authors." Enhancements consist mostly of
additional hardware emulation, of course, but it doesn't stop there; see the changelog for lots of
details.
Security updates for Thursday
Security updates have been issued by Debian (linux-4.19, linux-latest-4.19, and openjdk-8) and Fedora (ark and hylafax+).
[$] LWN.net Weekly Edition for August 13, 2020
The LWN.net Weekly Edition for August 13, 2020 is available.