source: postlfs/security/nss.xml@ b0b536c

11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/soup3 xry111/xf86-video-removal
Last change on this file since b0b536c was b0b536c, checked in by Pierre Labastie <pierre.labastie@…>, 2 years ago

Update to nss-3.78

  • Property mode set to 100644
File size: 12.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7<!-- for when .0 is not part of the new tarball name, but always referenced -->
8<!ENTITY nss-url "archive.mozilla.org/pub/security/nss/releases">
9
10<!-- micro versions-->
11<!--<!ENTITY nss-download-http "https://&nss-url;/NSS_3_&nss-minor-version;_&nss-micro-version;_RTM/src/nss-&nss-version;.tar.gz">-->
12
13<!-- no micro versions -->
14<!ENTITY nss-download-http "https://&nss-url;/NSS_&nss-dir;_RTM/src/nss-&nss-version;.tar.gz">
15
16 <!ENTITY nss-download-ftp " ">
17 <!ENTITY nss-md5sum "8162cb8da6fbd91ca1bda8c9f8d8de40">
18 <!ENTITY nss-size "81 MB">
19 <!ENTITY nss-buildsize "324 MB (add 157 MB for tests)">
20 <!ENTITY nss-time "1.9 SBU (with parallelism=4, add 63 SBU for tests, but can be much shorter on a modern CPU)">
21 <!-- On my system, I got 64.2 SBU, but Bruce gets 18 SBU. -renodr -->
22 <!-- On my system, I got 63 SBU, but Xi gets ~18 SBU. -pierre (for 3.78) -->
23]>
24
25<sect1 id="nss" xreflabel="nss-&nss-version;">
26 <?dbhtml filename="nss.html"?>
27
28 <sect1info>
29 <date>$Date$</date>
30 </sect1info>
31
32 <title>NSS-&nss-version;</title>
33
34 <indexterm zone="nss">
35 <primary sortas="a-NSS">NSS</primary>
36 </indexterm>
37
38 <sect2 role="package">
39 <title>Introduction to NSS</title>
40
41 <para>
42 The Network Security Services (<application>NSS</application>) package is
43 a set of libraries designed to support cross-platform development of
44 security-enabled client and server applications. Applications built with
45 NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12,
46 S/MIME, X.509 v3 certificates, and other security standards. This is
47 useful for implementing SSL and S/MIME or other Internet security
48 standards into an application.
49 </para>
50
51 &lfs111_checked;
52
53 <bridgehead renderas="sect3">Package Information</bridgehead>
54 <itemizedlist spacing="compact">
55 <listitem>
56 <para>
57 Download (HTTP): <ulink url="&nss-download-http;"/>
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download (FTP): <ulink url="&nss-download-ftp;"/>
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Download MD5 sum: &nss-md5sum;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Download size: &nss-size;
73 </para>
74 </listitem>
75 <listitem>
76 <para>
77 Estimated disk space required: &nss-buildsize;
78 </para>
79 </listitem>
80 <listitem>
81 <para>
82 Estimated build time: &nss-time;
83 </para>
84 </listitem>
85 </itemizedlist>
86
87 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
88 <itemizedlist spacing="compact">
89 <listitem>
90 <para>
91 Required patch:
92 <ulink url="&patch-root;/nss-&nss-version;-standalone-1.patch"/>
93 </para>
94 </listitem>
95 </itemizedlist>
96
97 <bridgehead renderas="sect3">NSS Dependencies</bridgehead>
98
99 <bridgehead renderas="sect4">Required</bridgehead>
100 <para role="required">
101 <xref linkend="nspr"/>
102 </para>
103
104 <bridgehead renderas="sect4">Recommended</bridgehead>
105 <para role="recommended">
106 <xref linkend="sqlite"/> and
107 <xref role="runtime" linkend="p11-kit"/> (runtime)
108 </para>
109
110 <para condition="html" role="usernotes">
111 User Notes: <ulink url="&blfs-wiki;/nss"/>
112 </para>
113 </sect2>
114
115 <sect2 role="installation">
116 <title>Installation of NSS</title>
117
118 <!-- In 3.53.x, parallel build was possible. See
119 http://lists.linuxfromscratch.org/pipermail/blfs-dev/2020-June/037498.html
120 for more information. -->
121
122 <!-- And with another rebuild of nss-3.54, all is well again, but broken in 3.60 -->
123 <!-- fixed again in 3.62
124 <note>
125 <para>
126 This package does not support parallel build.
127 </para>
128 </note>-->
129
130 <para>
131 Install <application>NSS</application> by running the following commands:
132 </para>
133
134<screen><userinput>patch -Np1 -i ../nss-&nss-version;-standalone-1.patch &amp;&amp;
135
136cd nss &amp;&amp;
137
138make BUILD_OPT=1 \
139 NSPR_INCLUDE_DIR=/usr/include/nspr \
140 USE_SYSTEM_ZLIB=1 \
141 ZLIB_LIBS=-lz \
142 NSS_ENABLE_WERROR=0 \
143 $([ $(uname -m) = x86_64 ] &amp;&amp; echo USE_64=1) \
144 $([ -f /usr/include/sqlite3.h ] &amp;&amp; echo NSS_USE_SYSTEM_SQLITE=1)</userinput></screen>
145
146 <para>
147 <!-- the unittest files get compiled automatically since nss-3.31.0 -->
148 To run the tests, execute the following commands<!--(1 test is known to fail)-->:
149 </para>
150
151<screen remap="test"><userinput>cd tests &amp;&amp;
152HOST=localhost DOMSUF=localdomain ./all.sh
153cd ../</userinput></screen>
154
155 <note>
156 <para>Some information about the tests:</para>
157 <itemizedlist spacing="compact">
158 <listitem>
159 <para>
160 HOST=localhost and DOMSUF=localdomain are required.
161 Without these variables, a FQDN is
162 required to be specified and this generic way should work for
163 everyone, provided <systemitem>localhost.localdomain</systemitem>
164 is defined in <filename>/etc/hosts</filename>, as done in
165 <ulink url="&lfs-root;/chapter09/network.html#ch-config-hosts">the
166 lfs book</ulink>.
167 </para>
168 </listitem>
169 <listitem>
170 <para>
171 The tests take an extremely long time to run. If desired there is
172 information in the all.sh script about running subsets of the
173 total test suite.
174 </para>
175 </listitem>
176 <listitem>
177 <para>
178 When interrupting the tests, the test suite
179 fails to spin down test servers that are run. This leads to an
180 infinite loop in the tests where the test suite tries to kill a server
181 that doesn't exist anymore because it pulls the wrong PID.
182 </para>
183 </listitem>
184 <listitem>
185 <para>
186 Test suite results (in HTML format!) can be found at
187 ../../test_results/security/localhost.1/results.html
188 </para>
189 </listitem>
190 </itemizedlist>
191 </note>
192
193 <para>
194 Now, as the <systemitem class="username">root</systemitem> user:
195 </para>
196
197<screen role="root"><userinput>cd ../dist &amp;&amp;
198
199install -v -m755 Linux*/lib/*.so /usr/lib &amp;&amp;
200install -v -m644 Linux*/lib/{*.chk,libcrmf.a} /usr/lib &amp;&amp;
201
202install -v -m755 -d /usr/include/nss &amp;&amp;
203cp -v -RL {public,private}/nss/* /usr/include/nss &amp;&amp;
204chmod -v 644 /usr/include/nss/* &amp;&amp;
205
206install -v -m755 Linux*/bin/{certutil,nss-config,pk12util} /usr/bin &amp;&amp;
207
208install -v -m644 Linux*/lib/pkgconfig/nss.pc /usr/lib/pkgconfig</userinput></screen>
209
210 </sect2>
211
212 <sect2 role="commands">
213 <title>Command Explanations</title>
214
215 <para>
216 <parameter>BUILD_OPT=1</parameter>: This option is passed to
217 <command>make</command> so that the build is performed with no debugging
218 symbols built into the binaries and the default compiler optimizations are
219 used.
220 </para>
221
222 <para>
223 <parameter>NSPR_INCLUDE_DIR=/usr/include/nspr</parameter>: This option
224 sets the location of the nspr headers.
225 </para>
226
227 <para>
228 <parameter>USE_SYSTEM_ZLIB=1</parameter>: This option is passed to
229 <command>make</command> to ensure that the
230 <filename class="libraryfile">libssl3.so</filename> library is linked to
231 the system installed <application>zlib</application> instead of the
232 in-tree version.
233 </para>
234
235 <para>
236 <parameter>ZLIB_LIBS=-lz</parameter>: This option provides the
237 linker flags needed to link to the system <application>zlib</application>.
238 </para>
239
240 <para>
241 <command>$([ $(uname -m) = x86_64 ] &amp;&amp; echo USE_64=1)</command>:
242 The <parameter>USE_64=1</parameter> option is <emphasis>required on
243 x86_64</emphasis>, otherwise <command>make</command> will try (and fail)
244 to create 32-bit objects. The [ $(uname -m) = x86_64 ] test ensures it
245 has no effect on a 32 bit system.
246 </para>
247
248 <para>
249 <command>([ -f /usr/include/sqlite3.h ] &amp;&amp; echo
250 NSS_USE_SYSTEM_SQLITE=1)</command>: This tests if
251 <application>sqlite</application> is installed and if so it
252 <command>echo</command>s the option NSS_USE_SYSTEM_SQLITE=1 to
253 <command>make</command> so that
254 <filename class="libraryfile">libsoftokn3.so</filename> will link against
255 the system version of sqlite.
256 </para>
257
258 <para>
259 <option>NSS_DISABLE_GTESTS=1</option>: If you don't need to run
260 NSS test suite, append this option to <command>make</command> command,
261 to prevent the compilation of tests and save some build time.
262 </para>
263
264 </sect2>
265
266 <sect2 role="configuration">
267 <title>Configuring NSS</title>
268
269 <para>
270 If <xref linkend="p11-kit"/> is installed, the
271 <application>p11-kit</application> trust module
272 (<filename>/usr/lib/pkcs11/p11-kit-trust.so</filename>) can be used as a
273 drop-in replacement for <filename>/usr/lib/libnssckbi.so</filename> to
274 transparently make the system CAs available to
275 <application>NSS</application> aware applications, rather than the static
276 list provided by <filename>/usr/lib/libnssckbi.so</filename>. As the
277 <systemitem class="username">root</systemitem> user, execute the following
278 commands:
279 </para>
280
281<screen role="root"><userinput>ln -sfv ./pkcs11/p11-kit-trust.so /usr/lib/libnssckbi.so</userinput></screen>
282
283 <para>
284 Additionally, for dependent applications that do not use the internal
285 database (<filename>/usr/lib/libnssckbi.so</filename>), the
286 <filename>/usr/sbin/make-ca</filename> script included on the
287 <xref linkend="make-ca"/> page can generate a system wide NSS DB with the
288 <parameter>-n</parameter> switch, or by modifying the
289 <filename>/etc/make-ca/make-ca.conf</filename> file.
290 </para>
291
292 </sect2>
293
294 <sect2 role="content">
295 <title>Contents</title>
296
297 <segmentedlist>
298 <segtitle>Installed Programs</segtitle>
299 <segtitle>Installed Libraries</segtitle>
300 <segtitle>Installed Directories</segtitle>
301
302 <seglistitem>
303 <seg>
304 certutil, nss-config, and pk12util
305 </seg>
306 <seg>
307 libcrmf.a, libfreebl3.so, libfreeblpriv3.so,
308 libnss3.so, libnssckbi.so, libnssckbi-testlib.so,
309 libnssdbm3.so, libnsssysinit.so, libnssutil3.so,
310 libpkcs11testmodule.so, libsmime3.so, libsoftokn3.so,
311 and libssl3.so
312 </seg>
313 <seg>
314 /usr/include/nss
315 </seg>
316 </seglistitem>
317 </segmentedlist>
318
319 <variablelist>
320 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
321 <?dbfo list-presentation="list"?>
322 <?dbhtml list-presentation="table"?>
323
324 <varlistentry id="certutil">
325 <term><command>certutil</command></term>
326 <listitem>
327 <para>
328 is the Mozilla Certificate Database Tool. It is a command-line
329 utility that can create and modify the Netscape Communicator
330 cert8.db and key3.db database files. It can also list, generate,
331 modify, or delete certificates within the cert8.db file and create
332 or change the password, generate new public and private key pairs,
333 display the contents of the key database, or delete key pairs within
334 the key3.db file
335 </para>
336 <indexterm zone="nss certutil">
337 <primary sortas="b-certutil">certutil</primary>
338 </indexterm>
339 </listitem>
340 </varlistentry>
341
342 <varlistentry id="nss-config">
343 <term><command>nss-config</command></term>
344 <listitem>
345 <para>
346 is used to determine the NSS library settings of the installed NSS
347 libraries
348 </para>
349 <indexterm zone="nss nss-config">
350 <primary sortas="b-nss-config">nss-config</primary>
351 </indexterm>
352 </listitem>
353 </varlistentry>
354
355 <varlistentry id="pk12util">
356 <term><command>pk12util</command></term>
357 <listitem>
358 <para>
359 is a tool for importing certificates and keys from pkcs #12 files
360 into NSS or exporting them. It can also list certificates and keys
361 in such files
362 </para>
363 <indexterm zone="nss pk12util">
364 <primary sortas="b-pk12util">pk12util</primary>
365 </indexterm>
366 </listitem>
367 </varlistentry>
368
369 </variablelist>
370
371 </sect2>
372
373</sect1>
Note: See TracBrowser for help on using the repository browser.