1INN-SECRETS.CONF(5)       InterNetNews Documentation       INN-SECRETS.CONF(5)
2
3
4

NAME

6       inn-secrets.conf - Configuration data for InterNetNews secrets
7

DESCRIPTION

9       inn-secrets.conf in pathetc is a configuration file containing general
10       secrets used by INN.  It was added in INN 2.7.0 for the implementation
11       of Cancel-Lock.  The intent is that new secrets used by INN are added
12       to that file, and that all secrets currently stored in several other
13       configuration files eventually move to that file.
14
15       The inn-secrets.conf file is not required.  It currently only serves
16       the purpose of Cancel-Lock.  If not present or empty, the Cancel-Lock
17       authentication system will just be deactivated for local posts.
18
19       This file is intended to be fairly static.  Any changes made to it will
20       generally not affect any running programs until they restart.
21
22       Changes in Cancel-Lock secrets will be taken into account when new
23       nnrpd processes are spawned (which happens each time a reader opens a
24       new connection).
25
26       Blank lines and lines starting with a number sign ("#") are ignored.
27       All other lines specify parameters, and are organized in groups.  The
28       general form is:
29
30           <group> {
31               <parameter>: <value>
32           }
33
34       (Any amount of whitespace can be put after the colon and is optional.)
35       If the value contains embedded whitespace or any of the characters
36       "[]<>{}"\:;", it must be enclosed in double quotes ("").  A backslash
37       ("\") can be used to escape quotes and backslashes inside double
38       quotes.  <group> and <parameter> are case-sensitive; "cancels" is not
39       the same as "Cancels" or "CANCELS".  (inn-secrets.conf groups and
40       parameters are generally all in lowercase.)
41
42       The two parameters currently defined in this file have as their value a
43       list of strings, that is to say space-separated elements enclosed in
44       square brackets.  Examples follow in the documentation.
45

PARAMETERS

47   Cancel-Lock secrets
48       These secrets are used for the Cancel-Lock authentication system
49       described in RFC 8315.  This mechanism permits verifying that the
50       withdrawal of an article is valid, that is to say the poster, posting
51       agent, moderator, or injecting agent that processed the original
52       article has requested to withdraw it via the use of a cancel control
53       article or a Supersedes header field.
54
55       You'll need to build INN with version 3.3.0 or later of libcanlock to
56       embed Cancel-Lock support.  This library is available at
57       <https://micha.freeshell.org/libcanlock/>.  The "configure" script will
58       automatically enable Cancel-Lock support if it finds libcanlock; you
59       may have to specify the --with-canlock option to help "configure" find
60       it.
61
62       The "cancels" group is defined as follows:
63
64           cancels {
65               canlockadmin: [ "Cl4yniTtmlsR3nwVaM2erBQClVprEtLjd/UiqTErXjk=" ]
66               canlockuser:  [ "tf+fY0Z7KNzYzF9uPo/qPrLKOPXIJLqejwqsV1nwOTRwGQ==" ]
67           }
68
69       If one of the canlockadmin or canlockuser parameters is not an empty
70       list, nnrpd will add information to every posted article that will
71       permit other news servers to later ensure that an attempt to cancel or
72       supersede the article is not forged, and really originates from the
73       authenticated original sender or the administrator of the local server.
74
75       If your users are not individually authenticated or identifiable with a
76       unique static IP, you must not set canlockuser as otherwise anyone
77       would be able to cancel the articles of any other person with the same
78       assigned identity.  If all or only some of your users are individually
79       authenticated or identifiable, you can set canlockuser and make sure to
80       parameter addcanlockuser to "none" in all the access groups in
81       readers.conf that are shared between several different persons with the
82       same identity.
83
84       More concretely, for each secret in canlockadmin, nnrpd adds two
85       Base64-encoded hashes to a Cancel-Lock header field.  These hashes are
86       based on the secret and the Message-ID of the article.  If this field
87       already exists, it will just append the Base64-encoded hashes to its
88       end.  One hash uses the SHA-1 algorithm (for interoperability reasons
89       as not all news software implement SHA-256), and the other hash uses
90       the mandatory SHA-256 algorithm per RFC 8315.  Besides, nnrpd will
91       similarly add two Base64-encoded hashes for each secret in canlockuser;
92       these hashes are based on the secret, the identity assigned in
93       readers.conf to the connection or its static IP (depending on the
94       setting of addcanlockuser), and the Message-ID of the article.
95
96       When a cancel or supersede article is posted by an authenticated user,
97       nnrpd will add to a Cancel-Key header field two pre-images for each
98       secret in canlockuser.  (This is why it is important, if you have set
99       canlockuser, to parameter addcanlockuser to "none" in all the access
100       groups in readers.conf not corresponding to individual persons.)  Other
101       news servers can then hash one of these pre-images with SHA-1 or
102       SHA-256 algorithms (one is enough) and verify that the resulted
103       Base64-encoded hash is the same as the one present in the Cancel-Lock
104       header field of the original article.  (Necessarily, the same
105       authenticated user on the same local server sent the original article.)
106       When receiving articles with a Cancel-Key header field (locally or from
107       other peers), innd applies that check to verify the authenticity of the
108       withdrawal before deciding to honour it.
109
110       Naturally, no pre-images for each secret in canlockadmin are added by
111       nnrpd.  As these pre-images are not based on a user name, only the news
112       administrator can generate them (with the gencancel tool shipped with
113       INN) and then inject the cancel or supersede request with for instance
114       inews.  The news administrator is therefore capable to send
115       authenticated withdrawal requests for articles posted by all the users
116       of his news server, be they authenticated or not.
117
118       After this (little) introduction to explain what Cancel-Lock is for,
119       here are the two relevant parameters:
120
121       canlockadmin
122           This parameter expects a list of strings.  It is unset by default
123           (no admin hashes will be generated).
124
125           If this parameter is not an empty list, each provided secret will
126           be used to generate admin hashes.
127
128           To maximize security, secrets should have a length of at least the
129           output size of the hash function used (32 octets for SHA-256).  You
130           can for instance generate a strong secret based on 36 random octets
131           with:
132
133               % openssl rand -base64 36
134               Vs4zdggAHKEUtqs6dH5/oNGWwIVFPf2ZIngog6aE6cDMoyJF
135
136           and use it as follows:
137
138               canlockadmin: [ "Vs4zdggAHKEUtqs6dH5/oNGWwIVFPf2ZIngog6aE6cDMoyJF" ]
139
140           The purpose of providing several secrets is when you want to rotate
141           secrets.  For instance, if your policy is to change secrets each
142           year, you can use two secrets during a transition period:
143
144               canlockadmin: [ "rH5L8geEzkNVvpAZQMJJcd4AYkpSkkx5S/4qewPDA/U="
145                               "eAaeyrQfjqQryhqrfwJOKezwf9GpL+xs+A9YfK9MMxE=" ]
146
147           Withdrawals of previously posted articles will still work with the
148           old secret (still added to the Cancel-Key header field).
149
150           As all posted articles will have a Cancel-Lock header field with
151           the admin secret, you should also set canlockuser (and individually
152           authenticate the posters) because otherwise posters may not be able
153           to withdraw their own articles (unless their posting agents
154           generate Cancel-Lock header fields themselves with their own
155           secrets).
156
157       canlockuser
158           This parameter expects a list of strings.  It is unset by default
159           (no user-specific hashes will be generated).
160
161           The same recommendation of more than 32 random octets applies, and
162           the secrets must not be the same as canlockadmin.
163
164           If this parameter is not an empty list, each provided secret will
165           be used to generate hashes based on the identity assigned to users
166           by readers.conf or their static IP (depending on the setting of
167           addcanlockuser).  Beware that if your users are not individually
168           authenticated, you must not set canlockuser as otherwise anyone
169           would be able to cancel the articles of any other person with the
170           same assigned identity.  If needed, you can deactivate the
171           generation of user-specific hashes in access groups shared between
172           several different persons with the same identity in readers.conf by
173           setting addcanlockuser to "none" in these access groups (it may for
174           instance be the case for localhost connections, if some articles
175           are injected with inews from an external source).
176
177           When using canlockuser, you should also set canlockadmin because
178           you may otherwise not always be able to generate the needed hash to
179           cancel an article posted by the users of your news server (notably
180           if you do not manage to find out the identity a user had when
181           posting the original article).
182

HISTORY

184       Documentation written by Julien Elie for InterNetNews.
185

SEE ALSO

187       gencancel(1), nnrpd(8), readers.conf(5).
188
189
190
191INN 2.7.0                         2022-07-10               INN-SECRETS.CONF(5)
Impressum