* [PATCH/RFC nfs-utils] exports.man: improve documentation of 'nohide' and 'crossmnt' @ 2015-02-16 1:21 NeilBrown 2015-02-16 20:17 ` J. Bruce Fields 2015-02-26 19:37 ` Steve Dickson 0 siblings, 2 replies; 9+ messages in thread From: NeilBrown @ 2015-02-16 1:21 UTC (permalink / raw) To: Steve Dickson; +Cc: NFS [-- Attachment #1: Type: text/plain, Size: 2575 bytes --] - note that 'nohide' is irrelevant for NFSv4 - note that children on a 'crossmnt' filesystem cannot be unexported - note that 'nocrossmnt' is a valid option, but probably not useful. Signed-off-by: NeilBrown <neilb@suse.de> --- I wonder if we should add a new option, e.g. "noaccess" so that children of a "crossmnt" filesystem can be hidden. The kernel wouldn't need to know about this. It would just tell mountd to refuse to export that filesystem even if the parent was "crossmnt". ?? NeilBrown diff --git a/utils/exportfs/exports.man b/utils/exportfs/exports.man index 3d974d92a729..88d9fbebe386 100644 --- a/utils/exportfs/exports.man +++ b/utils/exportfs/exports.man @@ -218,16 +218,46 @@ This option can be very useful in some situations, but it should be used with due care, and only after confirming that the client system copes with the situation effectively. -The option can be explicitly disabled with +The option can be explicitly disabled for NFSv2 and NFSv3 with .IR hide . + +This option is not relevant when NFSv4 is use. NFSv4 never hides +subordinate filesystems. Any filesystem that is exported will be +visible where expected when using NFSv4. .TP -.IR crossmnt +.I crossmnt This option is similar to .I nohide -but it makes it possible for clients to move from the filesystem marked -with crossmnt to exported filesystems mounted on it. Thus when a child -filesystem "B" is mounted on a parent "A", setting crossmnt on "A" has -the same effect as setting "nohide" on B. +but it makes it possible for clients to access all filesystems mounted +on a filesystem marked with +.IR crossmnt . +Thus when a child filesystem "B" is mounted on a parent "A", setting +crossmnt on "A" has a similar effect to setting "nohide" on B. + +With +.I nohide +the child filesystem needs to be explicitly exported. With +.I crossmnt +it need not. If a child of a +.I crossmnt +file is not explicitly exported, then it will be implicitly exported +with the same export options as the parent, except for +.IR fsid= . +This makes it impossible to +.B not +export a child of a +.I crossmnt +filesystem. If some but not all subordinate filesystems of a parent +are to be exported, then they must be explicitly exported and the +parent should not have +.I crossmnt +set. + +The +.I nocrossmnt +option can explictly disable +.I crossmnt +if it was previously set. This is rarely useful. .TP .IR no_subtree_check This option disables subtree checking, which has mild security [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 811 bytes --] ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH/RFC nfs-utils] exports.man: improve documentation of 'nohide' and 'crossmnt' 2015-02-16 1:21 [PATCH/RFC nfs-utils] exports.man: improve documentation of 'nohide' and 'crossmnt' NeilBrown @ 2015-02-16 20:17 ` J. Bruce Fields 2015-02-16 23:06 ` Trond Myklebust 2015-02-18 1:41 ` NeilBrown 2015-02-26 19:37 ` Steve Dickson 1 sibling, 2 replies; 9+ messages in thread From: J. Bruce Fields @ 2015-02-16 20:17 UTC (permalink / raw) To: NeilBrown; +Cc: Steve Dickson, NFS On Mon, Feb 16, 2015 at 12:21:07PM +1100, NeilBrown wrote: > > > - note that 'nohide' is irrelevant for NFSv4 > - note that children on a 'crossmnt' filesystem cannot be unexported > - note that 'nocrossmnt' is a valid option, but probably not useful. > > Signed-off-by: NeilBrown <neilb@suse.de> > > --- > > I wonder if we should add a new option, e.g. "noaccess" so that children > of a "crossmnt" filesystem can be hidden. The kernel wouldn't need to > know about this. It would just tell mountd to refuse to export that > filesystem even if the parent was "crossmnt". > ?? Seems logical enough, but I can't recall seeing requests for it, and the options here already seem complicated enough. In theory something like that could also be done with namespaces. (So, run mountd in a separate mount namespace that lacks those children.) --b. > > NeilBrown > > > diff --git a/utils/exportfs/exports.man b/utils/exportfs/exports.man > index 3d974d92a729..88d9fbebe386 100644 > --- a/utils/exportfs/exports.man > +++ b/utils/exportfs/exports.man > @@ -218,16 +218,46 @@ This option can be very useful in some situations, but it should be > used with due care, and only after confirming that the client system > copes with the situation effectively. > > -The option can be explicitly disabled with > +The option can be explicitly disabled for NFSv2 and NFSv3 with > .IR hide . > + > +This option is not relevant when NFSv4 is use. NFSv4 never hides > +subordinate filesystems. Any filesystem that is exported will be > +visible where expected when using NFSv4. > .TP > -.IR crossmnt > +.I crossmnt > This option is similar to > .I nohide > -but it makes it possible for clients to move from the filesystem marked > -with crossmnt to exported filesystems mounted on it. Thus when a child > -filesystem "B" is mounted on a parent "A", setting crossmnt on "A" has > -the same effect as setting "nohide" on B. > +but it makes it possible for clients to access all filesystems mounted > +on a filesystem marked with > +.IR crossmnt . > +Thus when a child filesystem "B" is mounted on a parent "A", setting > +crossmnt on "A" has a similar effect to setting "nohide" on B. > + > +With > +.I nohide > +the child filesystem needs to be explicitly exported. With > +.I crossmnt > +it need not. If a child of a > +.I crossmnt > +file is not explicitly exported, then it will be implicitly exported > +with the same export options as the parent, except for > +.IR fsid= . > +This makes it impossible to > +.B not > +export a child of a > +.I crossmnt > +filesystem. If some but not all subordinate filesystems of a parent > +are to be exported, then they must be explicitly exported and the > +parent should not have > +.I crossmnt > +set. > + > +The > +.I nocrossmnt > +option can explictly disable > +.I crossmnt > +if it was previously set. This is rarely useful. > .TP > .IR no_subtree_check > This option disables subtree checking, which has mild security ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH/RFC nfs-utils] exports.man: improve documentation of 'nohide' and 'crossmnt' 2015-02-16 20:17 ` J. Bruce Fields @ 2015-02-16 23:06 ` Trond Myklebust 2015-02-18 1:42 ` NeilBrown 2015-02-18 1:41 ` NeilBrown 1 sibling, 1 reply; 9+ messages in thread From: Trond Myklebust @ 2015-02-16 23:06 UTC (permalink / raw) To: J. Bruce Fields; +Cc: NeilBrown, Steve Dickson, NFS On Mon, Feb 16, 2015 at 3:17 PM, J. Bruce Fields <bfields@fieldses.org> wrote: > On Mon, Feb 16, 2015 at 12:21:07PM +1100, NeilBrown wrote: >> >> >> - note that 'nohide' is irrelevant for NFSv4 >> - note that children on a 'crossmnt' filesystem cannot be unexported >> - note that 'nocrossmnt' is a valid option, but probably not useful. >> >> Signed-off-by: NeilBrown <neilb@suse.de> >> >> --- >> >> I wonder if we should add a new option, e.g. "noaccess" so that children >> of a "crossmnt" filesystem can be hidden. The kernel wouldn't need to >> know about this. It would just tell mountd to refuse to export that >> filesystem even if the parent was "crossmnt". >> ?? > > Seems logical enough, but I can't recall seeing requests for it, and > the options here already seem complicated enough. > > In theory something like that could also be done with namespaces. (So, > run mountd in a separate mount namespace that lacks those children.) Agreed. It seems unnecessarily complicated to add yet another option to the crossmnt/nohide saga. If the "nohide" documentation is too complex, then we should rather aim to improve that documentation. -- Trond Myklebust Linux NFS client maintainer, PrimaryData trond.myklebust@primarydata.com ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH/RFC nfs-utils] exports.man: improve documentation of 'nohide' and 'crossmnt' 2015-02-16 23:06 ` Trond Myklebust @ 2015-02-18 1:42 ` NeilBrown 0 siblings, 0 replies; 9+ messages in thread From: NeilBrown @ 2015-02-18 1:42 UTC (permalink / raw) To: Trond Myklebust; +Cc: J. Bruce Fields, Steve Dickson, NFS [-- Attachment #1: Type: text/plain, Size: 1649 bytes --] On Mon, 16 Feb 2015 18:06:06 -0500 Trond Myklebust <trond.myklebust@primarydata.com> wrote: > On Mon, Feb 16, 2015 at 3:17 PM, J. Bruce Fields <bfields@fieldses.org> wrote: > > On Mon, Feb 16, 2015 at 12:21:07PM +1100, NeilBrown wrote: > >> > >> > >> - note that 'nohide' is irrelevant for NFSv4 > >> - note that children on a 'crossmnt' filesystem cannot be unexported > >> - note that 'nocrossmnt' is a valid option, but probably not useful. > >> > >> Signed-off-by: NeilBrown <neilb@suse.de> > >> > >> --- > >> > >> I wonder if we should add a new option, e.g. "noaccess" so that children > >> of a "crossmnt" filesystem can be hidden. The kernel wouldn't need to > >> know about this. It would just tell mountd to refuse to export that > >> filesystem even if the parent was "crossmnt". > >> ?? > > > > Seems logical enough, but I can't recall seeing requests for it, and > > the options here already seem complicated enough. > > > > In theory something like that could also be done with namespaces. (So, > > run mountd in a separate mount namespace that lacks those children.) > > Agreed. It seems unnecessarily complicated to add yet another option > to the crossmnt/nohide saga. If the "nohide" documentation is too > complex, then we should rather aim to improve that documentation. > Yes - improving the documentation was my first step, hence this patch. Writing that documentation lead me to see that a particular configuration was impossible - hence the question. I have no strong desire for a change, and that seems to be common among others, so let's just drop it. Thanks, NeilBrown [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 811 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH/RFC nfs-utils] exports.man: improve documentation of 'nohide' and 'crossmnt' 2015-02-16 20:17 ` J. Bruce Fields 2015-02-16 23:06 ` Trond Myklebust @ 2015-02-18 1:41 ` NeilBrown 2015-02-18 1:54 ` J. Bruce Fields 1 sibling, 1 reply; 9+ messages in thread From: NeilBrown @ 2015-02-18 1:41 UTC (permalink / raw) To: J. Bruce Fields; +Cc: Steve Dickson, NFS [-- Attachment #1: Type: text/plain, Size: 1399 bytes --] On Mon, 16 Feb 2015 15:17:51 -0500 bfields@fieldses.org (J. Bruce Fields) wrote: > On Mon, Feb 16, 2015 at 12:21:07PM +1100, NeilBrown wrote: > > > > > > - note that 'nohide' is irrelevant for NFSv4 > > - note that children on a 'crossmnt' filesystem cannot be unexported > > - note that 'nocrossmnt' is a valid option, but probably not useful. > > > > Signed-off-by: NeilBrown <neilb@suse.de> > > > > --- > > > > I wonder if we should add a new option, e.g. "noaccess" so that children > > of a "crossmnt" filesystem can be hidden. The kernel wouldn't need to > > know about this. It would just tell mountd to refuse to export that > > filesystem even if the parent was "crossmnt". > > ?? > > Seems logical enough, but I can't recall seeing requests for it, and > the options here already seem complicated enough. I haven't seem requests myself. Just rumours of 'nohide' not working with NFSv4, which seems to suggest that someone wants something like that. But I cannot find a clear source. Maybe: http://ubuntuforums.org/showthread.php?t=2152643 http://ubuntuforums.org/showthread.php?t=1603881 > > In theory something like that could also be done with namespaces. (So, > run mountd in a separate mount namespace that lacks those children.) Do any of the NFS man pages need to be updated to say something about namespaces? NeilBrown [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 811 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH/RFC nfs-utils] exports.man: improve documentation of 'nohide' and 'crossmnt' 2015-02-18 1:41 ` NeilBrown @ 2015-02-18 1:54 ` J. Bruce Fields 2015-02-18 2:09 ` NeilBrown 0 siblings, 1 reply; 9+ messages in thread From: J. Bruce Fields @ 2015-02-18 1:54 UTC (permalink / raw) To: NeilBrown; +Cc: Steve Dickson, NFS On Wed, Feb 18, 2015 at 12:41:01PM +1100, NeilBrown wrote: > On Mon, 16 Feb 2015 15:17:51 -0500 bfields@fieldses.org (J. Bruce Fields) > wrote: > > > On Mon, Feb 16, 2015 at 12:21:07PM +1100, NeilBrown wrote: > > > > > > > > > - note that 'nohide' is irrelevant for NFSv4 > > > - note that children on a 'crossmnt' filesystem cannot be unexported > > > - note that 'nocrossmnt' is a valid option, but probably not useful. > > > > > > Signed-off-by: NeilBrown <neilb@suse.de> > > > > > > --- > > > > > > I wonder if we should add a new option, e.g. "noaccess" so that children > > > of a "crossmnt" filesystem can be hidden. The kernel wouldn't need to > > > know about this. It would just tell mountd to refuse to export that > > > filesystem even if the parent was "crossmnt". > > > ?? > > > > Seems logical enough, but I can't recall seeing requests for it, and > > the options here already seem complicated enough. > > I haven't seem requests myself. Just rumours of 'nohide' not working with > NFSv4, which seems to suggest that someone wants something like that. > But I cannot find a clear source. > > Maybe: > > http://ubuntuforums.org/showthread.php?t=2152643 > http://ubuntuforums.org/showthread.php?t=1603881 > > > > > > In theory something like that could also be done with namespaces. (So, > > run mountd in a separate mount namespace that lacks those children.) > > Do any of the NFS man pages need to be updated to say something about > namespaces? Maybe just a note in the rpc.mountd man page that export paths are all with respect to the mount namespace rpc.mountd is running in? --b. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH/RFC nfs-utils] exports.man: improve documentation of 'nohide' and 'crossmnt' 2015-02-18 1:54 ` J. Bruce Fields @ 2015-02-18 2:09 ` NeilBrown 2015-02-18 2:54 ` J. Bruce Fields 0 siblings, 1 reply; 9+ messages in thread From: NeilBrown @ 2015-02-18 2:09 UTC (permalink / raw) To: J. Bruce Fields; +Cc: Steve Dickson, NFS [-- Attachment #1: Type: text/plain, Size: 2331 bytes --] On Tue, 17 Feb 2015 20:54:32 -0500 "J. Bruce Fields" <bfields@fieldses.org> wrote: > On Wed, Feb 18, 2015 at 12:41:01PM +1100, NeilBrown wrote: > > On Mon, 16 Feb 2015 15:17:51 -0500 bfields@fieldses.org (J. Bruce Fields) > > wrote: > > > > > On Mon, Feb 16, 2015 at 12:21:07PM +1100, NeilBrown wrote: > > > > > > > > > > > > - note that 'nohide' is irrelevant for NFSv4 > > > > - note that children on a 'crossmnt' filesystem cannot be unexported > > > > - note that 'nocrossmnt' is a valid option, but probably not useful. > > > > > > > > Signed-off-by: NeilBrown <neilb@suse.de> > > > > > > > > --- > > > > > > > > I wonder if we should add a new option, e.g. "noaccess" so that children > > > > of a "crossmnt" filesystem can be hidden. The kernel wouldn't need to > > > > know about this. It would just tell mountd to refuse to export that > > > > filesystem even if the parent was "crossmnt". > > > > ?? > > > > > > Seems logical enough, but I can't recall seeing requests for it, and > > > the options here already seem complicated enough. > > > > I haven't seem requests myself. Just rumours of 'nohide' not working with > > NFSv4, which seems to suggest that someone wants something like that. > > But I cannot find a clear source. > > > > Maybe: > > > > http://ubuntuforums.org/showthread.php?t=2152643 > > http://ubuntuforums.org/showthread.php?t=1603881 > > > > > > > > > > In theory something like that could also be done with namespaces. (So, > > > run mountd in a separate mount namespace that lacks those children.) > > > > Do any of the NFS man pages need to be updated to say something about > > namespaces? > > Maybe just a note in the rpc.mountd man page that export paths are all > with respect to the mount namespace rpc.mountd is running in? > I assume that implies that there can only ever be one rpc.mountd running? I haven't really been following, but I assumed we would end up with a different rpc.mountd in each of several different namespaces, each one seeing a different cache through a differently configured /proc.. And somehow there would be different nfsds in different network namespaces, each tied to a filesystem namespace ... or something. I guess that isn't want is really happening? Thanks, NeilBrown [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 811 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH/RFC nfs-utils] exports.man: improve documentation of 'nohide' and 'crossmnt' 2015-02-18 2:09 ` NeilBrown @ 2015-02-18 2:54 ` J. Bruce Fields 0 siblings, 0 replies; 9+ messages in thread From: J. Bruce Fields @ 2015-02-18 2:54 UTC (permalink / raw) To: NeilBrown; +Cc: Steve Dickson, NFS On Wed, Feb 18, 2015 at 01:09:49PM +1100, NeilBrown wrote: > On Tue, 17 Feb 2015 20:54:32 -0500 "J. Bruce Fields" <bfields@fieldses.org> > wrote: > > > On Wed, Feb 18, 2015 at 12:41:01PM +1100, NeilBrown wrote: > > > On Mon, 16 Feb 2015 15:17:51 -0500 bfields@fieldses.org (J. Bruce Fields) > > > wrote: > > > > > > > On Mon, Feb 16, 2015 at 12:21:07PM +1100, NeilBrown wrote: > > > > > > > > > > > > > > > - note that 'nohide' is irrelevant for NFSv4 > > > > > - note that children on a 'crossmnt' filesystem cannot be unexported > > > > > - note that 'nocrossmnt' is a valid option, but probably not useful. > > > > > > > > > > Signed-off-by: NeilBrown <neilb@suse.de> > > > > > > > > > > --- > > > > > > > > > > I wonder if we should add a new option, e.g. "noaccess" so that children > > > > > of a "crossmnt" filesystem can be hidden. The kernel wouldn't need to > > > > > know about this. It would just tell mountd to refuse to export that > > > > > filesystem even if the parent was "crossmnt". > > > > > ?? > > > > > > > > Seems logical enough, but I can't recall seeing requests for it, and > > > > the options here already seem complicated enough. > > > > > > I haven't seem requests myself. Just rumours of 'nohide' not working with > > > NFSv4, which seems to suggest that someone wants something like that. > > > But I cannot find a clear source. > > > > > > Maybe: > > > > > > http://ubuntuforums.org/showthread.php?t=2152643 > > > http://ubuntuforums.org/showthread.php?t=1603881 > > > > > > > > > > > > > > In theory something like that could also be done with namespaces. (So, > > > > run mountd in a separate mount namespace that lacks those children.) > > > > > > Do any of the NFS man pages need to be updated to say something about > > > namespaces? > > > > Maybe just a note in the rpc.mountd man page that export paths are all > > with respect to the mount namespace rpc.mountd is running in? > > > > I assume that implies that there can only ever be one rpc.mountd running? > > I haven't really been following, but I assumed we would end up with a > different rpc.mountd in each of several different namespaces, each one seeing > a different cache through a differently configured /proc.. Right, so in the simple case there's one rpc.mountd, and export paths are interpreted with respect to that rpc.mountd's namespace. If you have multiple network namespaces, then you can independently start and stop nfsd's in each network namespace, each talking to its own rpc.mountd. > And somehow there would be different nfsds in different network namespaces, > each tied to a filesystem namespace ... or something. > > > I guess that isn't want is really happening? So, yes, that's the idea. NFSv4 doesn't work because of the unfinished usermode helper containerization stuff Ian Kent's working on. And I don't think anyone's really used any of this so there may be other lurking bugs. May still make sense to document what we have so far, though. --b. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH/RFC nfs-utils] exports.man: improve documentation of 'nohide' and 'crossmnt' 2015-02-16 1:21 [PATCH/RFC nfs-utils] exports.man: improve documentation of 'nohide' and 'crossmnt' NeilBrown 2015-02-16 20:17 ` J. Bruce Fields @ 2015-02-26 19:37 ` Steve Dickson 1 sibling, 0 replies; 9+ messages in thread From: Steve Dickson @ 2015-02-26 19:37 UTC (permalink / raw) To: NeilBrown; +Cc: NFS On 02/15/2015 08:21 PM, NeilBrown wrote: > > > - note that 'nohide' is irrelevant for NFSv4 > - note that children on a 'crossmnt' filesystem cannot be unexported > - note that 'nocrossmnt' is a valid option, but probably not useful. > > Signed-off-by: NeilBrown <neilb@suse.de> Committed! steved. > > --- > > I wonder if we should add a new option, e.g. "noaccess" so that children > of a "crossmnt" filesystem can be hidden. The kernel wouldn't need to > know about this. It would just tell mountd to refuse to export that > filesystem even if the parent was "crossmnt". > ?? > > NeilBrown > > > diff --git a/utils/exportfs/exports.man b/utils/exportfs/exports.man > index 3d974d92a729..88d9fbebe386 100644 > --- a/utils/exportfs/exports.man > +++ b/utils/exportfs/exports.man > @@ -218,16 +218,46 @@ This option can be very useful in some situations, but it should be > used with due care, and only after confirming that the client system > copes with the situation effectively. > > -The option can be explicitly disabled with > +The option can be explicitly disabled for NFSv2 and NFSv3 with > .IR hide . > + > +This option is not relevant when NFSv4 is use. NFSv4 never hides > +subordinate filesystems. Any filesystem that is exported will be > +visible where expected when using NFSv4. > .TP > -.IR crossmnt > +.I crossmnt > This option is similar to > .I nohide > -but it makes it possible for clients to move from the filesystem marked > -with crossmnt to exported filesystems mounted on it. Thus when a child > -filesystem "B" is mounted on a parent "A", setting crossmnt on "A" has > -the same effect as setting "nohide" on B. > +but it makes it possible for clients to access all filesystems mounted > +on a filesystem marked with > +.IR crossmnt . > +Thus when a child filesystem "B" is mounted on a parent "A", setting > +crossmnt on "A" has a similar effect to setting "nohide" on B. > + > +With > +.I nohide > +the child filesystem needs to be explicitly exported. With > +.I crossmnt > +it need not. If a child of a > +.I crossmnt > +file is not explicitly exported, then it will be implicitly exported > +with the same export options as the parent, except for > +.IR fsid= . > +This makes it impossible to > +.B not > +export a child of a > +.I crossmnt > +filesystem. If some but not all subordinate filesystems of a parent > +are to be exported, then they must be explicitly exported and the > +parent should not have > +.I crossmnt > +set. > + > +The > +.I nocrossmnt > +option can explictly disable > +.I crossmnt > +if it was previously set. This is rarely useful. > .TP > .IR no_subtree_check > This option disables subtree checking, which has mild security > ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2015-02-26 19:37 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-02-16 1:21 [PATCH/RFC nfs-utils] exports.man: improve documentation of 'nohide' and 'crossmnt' NeilBrown 2015-02-16 20:17 ` J. Bruce Fields 2015-02-16 23:06 ` Trond Myklebust 2015-02-18 1:42 ` NeilBrown 2015-02-18 1:41 ` NeilBrown 2015-02-18 1:54 ` J. Bruce Fields 2015-02-18 2:09 ` NeilBrown 2015-02-18 2:54 ` J. Bruce Fields 2015-02-26 19:37 ` Steve Dickson
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).