qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] virtio-iommu: Default to bypass during boot
@ 2021-02-18 10:59 Jean-Philippe Brucker
  2021-02-21 11:45 ` Michael S. Tsirkin
  0 siblings, 1 reply; 6+ messages in thread
From: Jean-Philippe Brucker @ 2021-02-18 10:59 UTC (permalink / raw)
  To: eric.auger; +Cc: Jean-Philippe Brucker, qemu-devel, mst

Currently the virtio-iommu device must be programmed before it allows
DMA from any PCI device. This can make the VM entirely unusable when a
virtio-iommu driver isn't present, for example in a bootloader that
loads the OS from storage.

Similarly to the other vIOMMU implementations, default to DMA bypassing
the IOMMU during boot. Add a "boot-bypass" option that lets users change
this behavior.

Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org>
---
 include/hw/virtio/virtio-iommu.h |  1 +
 hw/virtio/virtio-iommu.c         | 23 +++++++++++++++++++++--
 2 files changed, 22 insertions(+), 2 deletions(-)

diff --git a/include/hw/virtio/virtio-iommu.h b/include/hw/virtio/virtio-iommu.h
index 273e35c04bc..4c66989ca4e 100644
--- a/include/hw/virtio/virtio-iommu.h
+++ b/include/hw/virtio/virtio-iommu.h
@@ -58,6 +58,7 @@ struct VirtIOIOMMU {
     GTree *domains;
     QemuMutex mutex;
     GTree *endpoints;
+    bool boot_bypass;
 };
 
 #endif
diff --git a/hw/virtio/virtio-iommu.c b/hw/virtio/virtio-iommu.c
index c2883a2f6c8..cd08dc39eca 100644
--- a/hw/virtio/virtio-iommu.c
+++ b/hw/virtio/virtio-iommu.c
@@ -689,6 +689,25 @@ static void virtio_iommu_report_fault(VirtIOIOMMU *viommu, uint8_t reason,
 
 }
 
+static bool virtio_iommu_bypass_is_allowed(VirtIOIOMMU *s)
+{
+    VirtIODevice *vdev = &s->parent_obj;
+
+    /*
+     * Allow bypass if:
+     * - boot_bypass is enabled and the BYPASS feature hasn't yet been
+     *   acknowledged.
+     * - the BYPASS feature has been negotiated.
+     */
+    if (s->boot_bypass && !(vdev->status & VIRTIO_CONFIG_S_FEATURES_OK)) {
+        return true;
+    }
+    if (virtio_vdev_has_feature(vdev, VIRTIO_IOMMU_F_BYPASS)) {
+        return true;
+    }
+    return false;
+}
+
 static IOMMUTLBEntry virtio_iommu_translate(IOMMUMemoryRegion *mr, hwaddr addr,
                                             IOMMUAccessFlags flag,
                                             int iommu_idx)
@@ -715,8 +734,7 @@ static IOMMUTLBEntry virtio_iommu_translate(IOMMUMemoryRegion *mr, hwaddr addr,
         .perm = IOMMU_NONE,
     };
 
-    bypass_allowed = virtio_vdev_has_feature(&s->parent_obj,
-                                             VIRTIO_IOMMU_F_BYPASS);
+    bypass_allowed = virtio_iommu_bypass_is_allowed(s);
 
     sid = virtio_iommu_get_bdf(sdev);
 
@@ -1156,6 +1174,7 @@ static const VMStateDescription vmstate_virtio_iommu = {
 
 static Property virtio_iommu_properties[] = {
     DEFINE_PROP_LINK("primary-bus", VirtIOIOMMU, primary_bus, "PCI", PCIBus *),
+    DEFINE_PROP_BOOL("boot-bypass", VirtIOIOMMU, boot_bypass, true),
     DEFINE_PROP_END_OF_LIST(),
 };
 
-- 
2.30.0



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] virtio-iommu: Default to bypass during boot
  2021-02-18 10:59 [PATCH] virtio-iommu: Default to bypass during boot Jean-Philippe Brucker
@ 2021-02-21 11:45 ` Michael S. Tsirkin
  2021-02-25 17:13   ` Jean-Philippe Brucker
  0 siblings, 1 reply; 6+ messages in thread
From: Michael S. Tsirkin @ 2021-02-21 11:45 UTC (permalink / raw)
  To: Jean-Philippe Brucker; +Cc: eric.auger, qemu-devel

On Thu, Feb 18, 2021 at 11:59:30AM +0100, Jean-Philippe Brucker wrote:
> Currently the virtio-iommu device must be programmed before it allows
> DMA from any PCI device. This can make the VM entirely unusable when a
> virtio-iommu driver isn't present, for example in a bootloader that
> loads the OS from storage.
> 
> Similarly to the other vIOMMU implementations, default to DMA bypassing
> the IOMMU during boot. Add a "boot-bypass" option that lets users change
> this behavior.
> 
> Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org>

wouldn't this be a spec violation?


When the device is reset, endpoints are not attached to any domain.

If the VIRTIO_IOMMU_F_BYPASS feature is negotiated, all accesses from
unattached endpoints are allowed and translated by the IOMMU using the
identity function. If the feature is not negotiated, any memory access
from an unattached endpoint fails. Upon attaching an endpoint in
bypass mode to a new domain, any memory access from the endpoint fails,
since the domain does not contain any mapping.


Maybe it's not too late to change the spec here - want to try sending
a spec patch?




> ---
>  include/hw/virtio/virtio-iommu.h |  1 +
>  hw/virtio/virtio-iommu.c         | 23 +++++++++++++++++++++--
>  2 files changed, 22 insertions(+), 2 deletions(-)
> 
> diff --git a/include/hw/virtio/virtio-iommu.h b/include/hw/virtio/virtio-iommu.h
> index 273e35c04bc..4c66989ca4e 100644
> --- a/include/hw/virtio/virtio-iommu.h
> +++ b/include/hw/virtio/virtio-iommu.h
> @@ -58,6 +58,7 @@ struct VirtIOIOMMU {
>      GTree *domains;
>      QemuMutex mutex;
>      GTree *endpoints;
> +    bool boot_bypass;
>  };
>  
>  #endif
> diff --git a/hw/virtio/virtio-iommu.c b/hw/virtio/virtio-iommu.c
> index c2883a2f6c8..cd08dc39eca 100644
> --- a/hw/virtio/virtio-iommu.c
> +++ b/hw/virtio/virtio-iommu.c
> @@ -689,6 +689,25 @@ static void virtio_iommu_report_fault(VirtIOIOMMU *viommu, uint8_t reason,
>  
>  }
>  
> +static bool virtio_iommu_bypass_is_allowed(VirtIOIOMMU *s)
> +{
> +    VirtIODevice *vdev = &s->parent_obj;
> +
> +    /*
> +     * Allow bypass if:
> +     * - boot_bypass is enabled and the BYPASS feature hasn't yet been
> +     *   acknowledged.
> +     * - the BYPASS feature has been negotiated.
> +     */
> +    if (s->boot_bypass && !(vdev->status & VIRTIO_CONFIG_S_FEATURES_OK)) {
> +        return true;
> +    }
> +    if (virtio_vdev_has_feature(vdev, VIRTIO_IOMMU_F_BYPASS)) {
> +        return true;
> +    }
> +    return false;
> +}
> +
>  static IOMMUTLBEntry virtio_iommu_translate(IOMMUMemoryRegion *mr, hwaddr addr,
>                                              IOMMUAccessFlags flag,
>                                              int iommu_idx)
> @@ -715,8 +734,7 @@ static IOMMUTLBEntry virtio_iommu_translate(IOMMUMemoryRegion *mr, hwaddr addr,
>          .perm = IOMMU_NONE,
>      };
>  
> -    bypass_allowed = virtio_vdev_has_feature(&s->parent_obj,
> -                                             VIRTIO_IOMMU_F_BYPASS);
> +    bypass_allowed = virtio_iommu_bypass_is_allowed(s);
>  
>      sid = virtio_iommu_get_bdf(sdev);
>  
> @@ -1156,6 +1174,7 @@ static const VMStateDescription vmstate_virtio_iommu = {
>  
>  static Property virtio_iommu_properties[] = {
>      DEFINE_PROP_LINK("primary-bus", VirtIOIOMMU, primary_bus, "PCI", PCIBus *),
> +    DEFINE_PROP_BOOL("boot-bypass", VirtIOIOMMU, boot_bypass, true),
>      DEFINE_PROP_END_OF_LIST(),
>  };
>  
> -- 
> 2.30.0



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] virtio-iommu: Default to bypass during boot
  2021-02-21 11:45 ` Michael S. Tsirkin
@ 2021-02-25 17:13   ` Jean-Philippe Brucker
  2021-02-26  8:11     ` Tian, Kevin
  0 siblings, 1 reply; 6+ messages in thread
From: Jean-Philippe Brucker @ 2021-02-25 17:13 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: eric.auger, qemu-devel

On Sun, Feb 21, 2021 at 06:45:18AM -0500, Michael S. Tsirkin wrote:
> On Thu, Feb 18, 2021 at 11:59:30AM +0100, Jean-Philippe Brucker wrote:
> > Currently the virtio-iommu device must be programmed before it allows
> > DMA from any PCI device. This can make the VM entirely unusable when a
> > virtio-iommu driver isn't present, for example in a bootloader that
> > loads the OS from storage.
> > 
> > Similarly to the other vIOMMU implementations, default to DMA bypassing
> > the IOMMU during boot. Add a "boot-bypass" option that lets users change
> > this behavior.
> > 
> > Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org>
> 
> wouldn't this be a spec violation?
> 
> 
> When the device is reset, endpoints are not attached to any domain.
> 
> If the VIRTIO_IOMMU_F_BYPASS feature is negotiated, all accesses from
> unattached endpoints are allowed and translated by the IOMMU using the
> identity function. If the feature is not negotiated, any memory access
> from an unattached endpoint fails. Upon attaching an endpoint in
> bypass mode to a new domain, any memory access from the endpoint fails,
> since the domain does not contain any mapping.

Right, but the device behavior regarding BYPASS is specified as:

  If the driver does not accept the VIRTIO_IOMMU_F_BYPASS feature, the
  device SHOULD NOT let endpoints access the guest-physical address space.

So I figured that the spec could be read as "before feature negotiation
it's undefined whether the IOMMU is bypassed or not" and so a device
implementation can choose either (previously discussed at [1]). But it's a
stretch, we should clarify this.

Also, the OS might want to know whether DMA was bypassing the IOMMU before
the device is initialized. If there are strong security requirements, then
boot-bypass means the system was vulnerable to DMA attacks during boot.

So I'd like to add a new feature bit for this, VIRTIO_IOMMU_F_BOOT_BYPASS,
that tells whether DMA bypasses the IOMMU before feature negotiation. It's
only an indicator, accepting the feature doesn't change anything. I'll
send the spec change shortly.

Thanks,
Jean

[1] https://lore.kernel.org/qemu-devel/20200109104032.GA937123@myrica/

> Maybe it's not too late to change the spec here - want to try sending
> a spec patch?


^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH] virtio-iommu: Default to bypass during boot
  2021-02-25 17:13   ` Jean-Philippe Brucker
@ 2021-02-26  8:11     ` Tian, Kevin
  2021-02-26 13:00       ` Jean-Philippe Brucker
  0 siblings, 1 reply; 6+ messages in thread
From: Tian, Kevin @ 2021-02-26  8:11 UTC (permalink / raw)
  To: Jean-Philippe Brucker, Michael S. Tsirkin; +Cc: eric.auger, qemu-devel

> From: Qemu-devel <qemu-devel-bounces+kevin.tian=intel.com@nongnu.org>
> On Behalf Of Jean-Philippe Brucker
> 
> On Sun, Feb 21, 2021 at 06:45:18AM -0500, Michael S. Tsirkin wrote:
> > On Thu, Feb 18, 2021 at 11:59:30AM +0100, Jean-Philippe Brucker wrote:
> > > Currently the virtio-iommu device must be programmed before it allows
> > > DMA from any PCI device. This can make the VM entirely unusable when
> a
> > > virtio-iommu driver isn't present, for example in a bootloader that
> > > loads the OS from storage.
> > >
> > > Similarly to the other vIOMMU implementations, default to DMA
> bypassing
> > > the IOMMU during boot. Add a "boot-bypass" option that lets users
> change
> > > this behavior.
> > >
> > > Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org>
> >
> > wouldn't this be a spec violation?
> >
> >
> > When the device is reset, endpoints are not attached to any domain.
> >
> > If the VIRTIO_IOMMU_F_BYPASS feature is negotiated, all accesses from
> > unattached endpoints are allowed and translated by the IOMMU using the
> > identity function. If the feature is not negotiated, any memory access
> > from an unattached endpoint fails. Upon attaching an endpoint in
> > bypass mode to a new domain, any memory access from the endpoint fails,
> > since the domain does not contain any mapping.
> 
> Right, but the device behavior regarding BYPASS is specified as:
> 
>   If the driver does not accept the VIRTIO_IOMMU_F_BYPASS feature, the
>   device SHOULD NOT let endpoints access the guest-physical address space.
> 
> So I figured that the spec could be read as "before feature negotiation
> it's undefined whether the IOMMU is bypassed or not" and so a device
> implementation can choose either (previously discussed at [1]). But it's a
> stretch, we should clarify this.
> 
> Also, the OS might want to know whether DMA was bypassing the IOMMU
> before
> the device is initialized. If there are strong security requirements, then
> boot-bypass means the system was vulnerable to DMA attacks during boot.
> 
> So I'd like to add a new feature bit for this, VIRTIO_IOMMU_F_BOOT_BYPASS,
> that tells whether DMA bypasses the IOMMU before feature negotiation. It's
> only an indicator, accepting the feature doesn't change anything. I'll
> send the spec change shortly.
> 
> Thanks,
> Jean
> 
> [1] https://lore.kernel.org/qemu-
> devel/20200109104032.GA937123@myrica/
> 

I wonder why we didn't define the default behavior to bypass (to align with
other vIOMMUs) in the first place and then have an option (e.g. 
VIRTIO_IOMMU_F_NOBYPASS) to override in case a stricter policy is required. 
In concept when a IOMMU device is uninitialized or reset, it essentially means 
no protection in place thus a bypass behavior. 

Thanks
Kevin


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] virtio-iommu: Default to bypass during boot
  2021-02-26  8:11     ` Tian, Kevin
@ 2021-02-26 13:00       ` Jean-Philippe Brucker
  2021-03-04  7:59         ` Tian, Kevin
  0 siblings, 1 reply; 6+ messages in thread
From: Jean-Philippe Brucker @ 2021-02-26 13:00 UTC (permalink / raw)
  To: Tian, Kevin; +Cc: eric.auger, qemu-devel, Michael S. Tsirkin

On Fri, Feb 26, 2021 at 08:11:41AM +0000, Tian, Kevin wrote:
> > From: Qemu-devel <qemu-devel-bounces+kevin.tian=intel.com@nongnu.org>
> > On Behalf Of Jean-Philippe Brucker
> > 
> > On Sun, Feb 21, 2021 at 06:45:18AM -0500, Michael S. Tsirkin wrote:
> > > On Thu, Feb 18, 2021 at 11:59:30AM +0100, Jean-Philippe Brucker wrote:
> > > > Currently the virtio-iommu device must be programmed before it allows
> > > > DMA from any PCI device. This can make the VM entirely unusable when
> > a
> > > > virtio-iommu driver isn't present, for example in a bootloader that
> > > > loads the OS from storage.
> > > >
> > > > Similarly to the other vIOMMU implementations, default to DMA
> > bypassing
> > > > the IOMMU during boot. Add a "boot-bypass" option that lets users
> > change
> > > > this behavior.
> > > >
> > > > Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org>
> > >
> > > wouldn't this be a spec violation?
> > >
> > >
> > > When the device is reset, endpoints are not attached to any domain.
> > >
> > > If the VIRTIO_IOMMU_F_BYPASS feature is negotiated, all accesses from
> > > unattached endpoints are allowed and translated by the IOMMU using the
> > > identity function. If the feature is not negotiated, any memory access
> > > from an unattached endpoint fails. Upon attaching an endpoint in
> > > bypass mode to a new domain, any memory access from the endpoint fails,
> > > since the domain does not contain any mapping.
> > 
> > Right, but the device behavior regarding BYPASS is specified as:
> > 
> >   If the driver does not accept the VIRTIO_IOMMU_F_BYPASS feature, the
> >   device SHOULD NOT let endpoints access the guest-physical address space.
> > 
> > So I figured that the spec could be read as "before feature negotiation
> > it's undefined whether the IOMMU is bypassed or not" and so a device
> > implementation can choose either (previously discussed at [1]). But it's a
> > stretch, we should clarify this.
> > 
> > Also, the OS might want to know whether DMA was bypassing the IOMMU
> > before
> > the device is initialized. If there are strong security requirements, then
> > boot-bypass means the system was vulnerable to DMA attacks during boot.
> > 
> > So I'd like to add a new feature bit for this, VIRTIO_IOMMU_F_BOOT_BYPASS,
> > that tells whether DMA bypasses the IOMMU before feature negotiation. It's
> > only an indicator, accepting the feature doesn't change anything. I'll
> > send the spec change shortly.
> > 
> > Thanks,
> > Jean
> > 
> > [1] https://lore.kernel.org/qemu-
> > devel/20200109104032.GA937123@myrica/
> > 
> 
> I wonder why we didn't define the default behavior to bypass (to align with
> other vIOMMUs) in the first place and then have an option (e.g. 
> VIRTIO_IOMMU_F_NOBYPASS) to override in case a stricter policy is required. 

Yes in hindsight the polarity should probably have been reversed. Clearly
I could have put more thoughts into this. When writing the spec it seemed
natural in terms of security to disallow accesses until software
explicitly enables bypass.

In the linked discussion, which happened after the initial spec was
accepted, we concluded that QEMU should be boot-bypass by default and the
spec ought to be clarified to explicitly allow this, I just didn't take
time to work on it until now.

> In concept when a IOMMU device is uninitialized or reset, it essentially means 
> no protection in place thus a bypass behavior. 

Not necessarily, the SMMU leaves that choice to the implementation (but it
does have the right polarity 0 == bypass). The SMMU_GBPA register defines
the bypass behavior. Implementations can tie it to 0 or 1 to define the
default behavior of abort or bypass. Then software sets it to 0 or 1 to
select the runtime policy. Ideally I'd like a similar mechanism for
virtio-iommu, because it's sticky across reset - no vulnerability window
when firmware hands over the IOMMU to the OS.

Thanks,
Jean


^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH] virtio-iommu: Default to bypass during boot
  2021-02-26 13:00       ` Jean-Philippe Brucker
@ 2021-03-04  7:59         ` Tian, Kevin
  0 siblings, 0 replies; 6+ messages in thread
From: Tian, Kevin @ 2021-03-04  7:59 UTC (permalink / raw)
  To: Jean-Philippe Brucker; +Cc: eric.auger, qemu-devel, Michael S. Tsirkin

> From: Jean-Philippe Brucker <jean-philippe@linaro.org>
> Sent: Friday, February 26, 2021 9:01 PM
> 
> On Fri, Feb 26, 2021 at 08:11:41AM +0000, Tian, Kevin wrote:
> > > From: Qemu-devel <qemu-devel-
> bounces+kevin.tian=intel.com@nongnu.org>
> > > On Behalf Of Jean-Philippe Brucker
> > >
> > > On Sun, Feb 21, 2021 at 06:45:18AM -0500, Michael S. Tsirkin wrote:
> > > > On Thu, Feb 18, 2021 at 11:59:30AM +0100, Jean-Philippe Brucker wrote:
> > > > > Currently the virtio-iommu device must be programmed before it
> allows
> > > > > DMA from any PCI device. This can make the VM entirely unusable
> when
> > > a
> > > > > virtio-iommu driver isn't present, for example in a bootloader that
> > > > > loads the OS from storage.
> > > > >
> > > > > Similarly to the other vIOMMU implementations, default to DMA
> > > bypassing
> > > > > the IOMMU during boot. Add a "boot-bypass" option that lets users
> > > change
> > > > > this behavior.
> > > > >
> > > > > Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org>
> > > >
> > > > wouldn't this be a spec violation?
> > > >
> > > >
> > > > When the device is reset, endpoints are not attached to any domain.
> > > >
> > > > If the VIRTIO_IOMMU_F_BYPASS feature is negotiated, all accesses
> from
> > > > unattached endpoints are allowed and translated by the IOMMU using
> the
> > > > identity function. If the feature is not negotiated, any memory access
> > > > from an unattached endpoint fails. Upon attaching an endpoint in
> > > > bypass mode to a new domain, any memory access from the endpoint
> fails,
> > > > since the domain does not contain any mapping.
> > >
> > > Right, but the device behavior regarding BYPASS is specified as:
> > >
> > >   If the driver does not accept the VIRTIO_IOMMU_F_BYPASS feature, the
> > >   device SHOULD NOT let endpoints access the guest-physical address
> space.
> > >
> > > So I figured that the spec could be read as "before feature negotiation
> > > it's undefined whether the IOMMU is bypassed or not" and so a device
> > > implementation can choose either (previously discussed at [1]). But it's a
> > > stretch, we should clarify this.
> > >
> > > Also, the OS might want to know whether DMA was bypassing the
> IOMMU
> > > before
> > > the device is initialized. If there are strong security requirements, then
> > > boot-bypass means the system was vulnerable to DMA attacks during
> boot.
> > >
> > > So I'd like to add a new feature bit for this,
> VIRTIO_IOMMU_F_BOOT_BYPASS,
> > > that tells whether DMA bypasses the IOMMU before feature negotiation.
> It's
> > > only an indicator, accepting the feature doesn't change anything. I'll
> > > send the spec change shortly.
> > >
> > > Thanks,
> > > Jean
> > >
> > > [1] https://lore.kernel.org/qemu-
> > > devel/20200109104032.GA937123@myrica/
> > >
> >
> > I wonder why we didn't define the default behavior to bypass (to align with
> > other vIOMMUs) in the first place and then have an option (e.g.
> > VIRTIO_IOMMU_F_NOBYPASS) to override in case a stricter policy is
> required.
> 
> Yes in hindsight the polarity should probably have been reversed. Clearly
> I could have put more thoughts into this. When writing the spec it seemed
> natural in terms of security to disallow accesses until software
> explicitly enables bypass.
> 
> In the linked discussion, which happened after the initial spec was
> accepted, we concluded that QEMU should be boot-bypass by default and
> the
> spec ought to be clarified to explicitly allow this, I just didn't take
> time to work on it until now.
> 
> > In concept when a IOMMU device is uninitialized or reset, it essentially
> means
> > no protection in place thus a bypass behavior.
> 
> Not necessarily, the SMMU leaves that choice to the implementation (but it
> does have the right polarity 0 == bypass). The SMMU_GBPA register defines
> the bypass behavior. Implementations can tie it to 0 or 1 to define the
> default behavior of abort or bypass. Then software sets it to 0 or 1 to
> select the runtime policy. Ideally I'd like a similar mechanism for
> virtio-iommu, because it's sticky across reset - no vulnerability window
> when firmware hands over the IOMMU to the OS.
> 

Thanks. Now I see the background of this patch. 😊

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-03-04  8:02 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-18 10:59 [PATCH] virtio-iommu: Default to bypass during boot Jean-Philippe Brucker
2021-02-21 11:45 ` Michael S. Tsirkin
2021-02-25 17:13   ` Jean-Philippe Brucker
2021-02-26  8:11     ` Tian, Kevin
2021-02-26 13:00       ` Jean-Philippe Brucker
2021-03-04  7:59         ` Tian, Kevin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).