5a36d6f55d65b9a8c244f24b27857354fea6c2ef
[oweals/gnunet.git] / README
1                        Welcome to GNUnet
2
3 ToC
4 ===
5
6 * ToC
7 * What is GNUnet?
8 * Dependencies
9   o direct dependencies
10   o test suite dependencies
11   o optional dependencies
12   o autotools
13 * Requirements
14 * How to install
15   o binary packages
16   o Scope of Operating System support
17   o Building GNUnet from source
18 * Configuration
19 * Usage
20 * Hacking GNUnet
21 * Running HTTP on port 80 and HTTPS on port 443
22 * Further Reading
23 * Stay tuned
24
25 What is GNUnet?
26 ===============
27
28 GNUnet is peer-to-peer framework providing a network abstractions and
29 applications focusing on security and privacy.  So far, we have
30 created applications for anonymous file-sharing, decentralized naming
31 and identity management, decentralized and confidential telephony and
32 tunneling IP traffic over GNUnet.  GNUnet is currently developed by a
33 worldwide group of independent free software developers.  GNUnet is a
34 GNU package (http://www.gnu.org/).
35
36 This is an ALPHA release.  There are known and significant bugs as
37 well as many missing features in this release.
38
39 GNUnet is free software released under the GNU Affero General Public
40 License (v3 or later). For details see the COPYING file in this
41 directory.  If you fork this software, you MUST adjust GNUNET_AGPL_URL
42 in src/include/gnunet_util_lib.h to point to the source code of your
43 fork!
44
45 Additional documentation about GNUnet can be found at
46 https://gnunet.org/ and in the 'doc/' folder.
47 Online documentation is provided at
48 'https://docs.gnunet.org' and 'https://tutorial.gnunet.org'.
49
50
51 Dependencies:
52 =============
53
54 These are the direct dependencies for running GNUnet:
55 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
56
57 - Bash                              (for some scripts)
58 - gettext
59 - gnutls             >= 3.2.12      (highly recommended a gnutls
60                                      linked against libunbound)
61 - A curl build against gnutls, or gnurl:
62   * libgnurl         >= 7.35.0      (recommended, available from
63                                      https://gnunet.org/en/gnurl.html)
64   or
65   * libcurl          >= 7.35.0      (alternative to libgnurl)
66 - libgcrypt          >= 1.6
67 - libunistring       >= 0.9.2
68 - libidn:
69   * libidn2 (prefered)
70   or
71   * libidn           >= 1.0
72 - libmicrohttpd      >= 0.9.52
73 - makeinfo           >= 4.8
74 - make[*3]
75 - nss                               (certutil binary, for
76                                      gnunet-gns-proxy-setup-ca)
77 - openssl            >= 1.0         (binary, used to generate
78                                      X.509 certificate
79                                      for gnunet-gns-proxy-setup-ca)
80 - A Posix shell                       (for some scripts)
81 - Texinfo            >= 5.2         [*1]
82 - libltdl            >= 2.2         (part of GNU libtool)
83 - 1 or more databases:
84   * sqlite           >= 3.8         (default database, required)
85   and/or
86   * mysql            >= 5.1         (alternative to sqlite)
87   and/or
88   * postgres         >= 9.5         (alternative to sqlite)
89 - which                             (contrib/apparmor(?), gnunet-bugreport,
90                                      and possibly more)
91 - zlib
92
93 These are the dependencies for GNUnet's testsuite:
94 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
95
96 - Bash                              (for some tests[*4])
97 - A Posix Shell                     (for some tests)
98 - python             >= 3.4         (3.4 and higher technically supported,
99                                      at least python 3.7 tested to work)
100 - base tools
101   - mostly:
102     - bc,
103     - curl,
104     - sed,
105     - awk,
106     - which
107
108
109 These are the optional dependencies:
110 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
111
112 - awk                               (for linting tests)
113 - Bash                              (for Docker and Vagrant)
114 - bluez                             (for bluetooth support)
115 - grof                              (for linting of man pages)
116 - guile              1.6.4          (or later up to 1.8?, for
117                                      gnunet-download-manager (see #5682))
118
119 - libextractor       >= 0.6.1       (highly recommended[*5])
120 - libjansson
121 - libglpk            >= 4.45        (for experimental code)
122 - libopus            >= 1.0.1       (for experimental conversation tool)
123 - libpulse           >= 2.0         (for experimental conversation tool)
124 - libogg             >= 1.3.0       (for experimental conversation tool)
125 - libnss                            (certtool binary (for convenient
126                                      installation of GNS proxy))
127 - libzbar            >= 0.10        (for gnunet-qr)
128 - libpbc             >= 0.5.14      (for Attribute-Based Encryption and
129                                      Identity Provider functionality)
130 - libgabe                           (for Attribute-Based Encryption and
131                                      Identity Provider functionality, from
132                                      https://github.com/schanzen/libgabe)
133 - mandoc                            (for linting of man pages, generation of
134                                      html output of man pages (not part of
135                                      the regular build))
136 - miniupnpc
137 - perl5                             (for some utilities)
138 - TeX Live           >= 2012        (for gnunet-bcd[*])
139 - texi2mdoc                         (for automatic mdoc generation [*2])
140
141 Recommended autotools for compiling the Git version are:
142 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
143
144 - autoconf           >= 2.59
145 - automake           >= 1.11.1
146 - libtool            >= 2.2
147
148
149 [*] Mandatory for compiling the info output of the documentation,
150     a limited subset ('texlive-tiny' in Guix) is enough.
151
152 [*1] The default configuration is to build the info output of the
153      documentation, and therefore require texinfo.  You can pass
154      '--disable-documentation' to the configure script to change this.
155
156 [*2] If you still prefer to have documentation, you can pass
157      '--with-section7' to build mdoc documentation (experimental
158      stages in gnunet). If this proves to be reliable, we will
159      include the mdoc output in the release tarballs.
160      Contrary to the name, texi2mdoc does not require texinfo,
161      It is a standalone ISO C utility.
162
163 [*3] GNU make introduced the != operator in version 4.0.
164      GNU make was released in october 2013, reasonable to
165      be widespread by now. If this is not working out for
166      you, open a bug so that we can get a more portable
167      fix in.
168
169 [*4] We are commited  to portable tools and solutions
170      where possible. New scripts should be Posix SH
171      compatible, current and older scripts are
172      in the process of being rewritten to comply
173      with this requirement.
174
175 [*5] While libextractor is optional, it is recommended to
176      build gnunet against it. If you install it later,
177      you won't benefit from libextractor.
178      If you are a distributor, we recommend to split
179      LE into basis + plugins rather than making LE
180      an option as an afterthought by the user.
181      LE itself is very small, but its dependency chain
182      on first, second, third etc level can be big.
183      There is a small effect on privacy if your LE build
184      differs from one which includes all
185      plugins (plugins are build as shared objects):
186      if users publish a directory with a mixture of file
187      types (for example mpeg, jpeg, png, gif) the
188      configuration of LE could leak which plugins are
189      installed for which filetypes are not providing
190      more details.
191      However, this leak is just a minor concern.
192
193 Requirements
194 ============
195
196 GNUnet's directed acyclic graph (DAG) will require around 0.74 GiB
197 Diskspace, with GNUNet itself taking around 8 - 9.2 MiB reported by
198 the build on GNU Guix.
199
200 How to install?
201 ===============
202
203
204 binary packages
205 ~~~~~~~~~~~~~~~
206
207 We recommend to use binary packages provided by your Operating System's
208 package manager. GNUnet is reportedly available for at least:
209
210 GNU Guix, Nix, Debian, ALT Linux, Archlinux, Deepin, Devuan, Hyperbola,
211 Kali Linux, LEDE/OpenWRT, Manjaro, Parabola, Pardus, Parrot, PureOS,
212 Raspbian, Rosa, Trisquel, and Ubuntu.
213
214 If GNUnet is available for your Operating System and it is missing,
215 send us feedback so that we can add it to this list. Furthermore, if
216 you are interested in packaging GNUnet for your Operating System,
217 get in touch with us at gnunet-developers@gnu.org if you require
218 help with this job.
219
220 If you were using an Operating System with the apt package manager,
221 GNUnet could be installed as simple as:
222
223 $ apt-get install gnunet
224
225 Generic installation instructions are in the INSTALL file in this
226 directory.
227
228 Scope of Operating System support
229 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
230 We actively support GNUnet on a broad range of Free Software Operating
231 Systems.
232
233 For proprietary Operating Systems, like for example Microsoft Windows
234 or Apple OS X, we accept patches if they don't break anything for
235 other Operating Systems.
236 If you are implementing support for a proprietary Operating System,
237 you should be aware that progress in our codebase could break
238 functionality on your OS and cause unpredicted behavior we can
239 not test. However, we do not break support on Operating Systems
240 with malicious intent.
241 Regressions which do occur on these Operating Systems are 3rd
242 class issues and we expect users and developers of these
243 Operating Systems to send proposed patches to fix regressions.
244
245 For more information about our stand on some of the motivating
246 points here, read the 'Philosophy' Chapter of our handbook.
247
248 Building GNUnet from source
249 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
250
251 IMPORTANT: You can read further notes about compilation from source in
252 the handbook under doc/handbook/, which includes notes about specific
253 requirements for operating systems aswell. If you are a package
254 mantainer for an Operating System we invite you to add your notes if
255 you feel it is necessary and can not be covered in your Operating
256 System's documentation.
257
258 Two prominent examples which currently lack cross-compilation
259 support in GNUnet (and native binaries) are MS Windows and Apple macOS.
260 For macOS we recommend you to do the build process via Homebrew and a
261 recent XCode installation. We don't recommend using GNUnet with any
262 recent MS Windows system as it officially spies on its users (according
263 to its T&C), defying some of the purposes of GNUnet.
264
265 Note that some functions of GNUnet require "root" access.  GNUnet will
266 install (tiny) SUID binaries for those functions is you run "make
267 install" as root.  If you do not, GNUnet will still work, but some
268 functionality will not be available (including certain forms of NAT
269 traversal).
270
271 GNUnet requires the GNU MP library (https://www.gnu.org/software/gmp/)
272 and libgcrypt (https://www.gnupg.org/).  You can specify the path to
273 libgcrypt by passing "--with-gcrypt=PATH" to configure.  You will also
274 need either sqlite (http://www.sqlite.org/), MySQL
275 (http://www.mysql.org/) or PostGres (http://www.postgres.org/).
276
277 If you install from source, you need to install GNU libextractor first
278 (download from https://www.gnu.org/software/libextractor/).  We also
279 recommend installing GNU libmicrohttpd (download from
280 https://www.gnu.org/software/libmicrohttpd/). Furthermore we recommend
281 libgnurl (from https://gnunet.org/en/gnurl.html).
282 Then you can start the actual GNUnet compilation process with:
283
284
285 $ export GNUNET_PREFIX=/usr/local/lib # or other directory of your choice
286 # addgroup gnunetdns
287 # adduser --system --home "/var/lib/gnunet" --group gnunet --shell /bin/sh
288 # ./configure --prefix=$GNUNET_PREFIX/.. --with-extractor=$LE_PREFIX
289 $ make
290
291 And finally install GNUnet with:
292
293 # make install
294
295 Complete the process by either adjusting one of our example service files
296 in 'contrib/services' or by running:
297
298 # sudo -u gnunet gnunet-arm -s
299
300
301 Note that running the 'configure' and 'make install' steps as
302 root (or with sudo) is required as some parts of the installation
303 require the creation of SUID binaries.  The installation will
304 work if you do not run these steps as root, but some components
305 may not be installed in the perfect place or with the right
306 permissions and thus won't work.
307
308 This will create the users and groups needed for running GNUnet
309 securely and then compile and install GNUnet to $GNUNET_PREFIX/../bin/,
310 $GNUNET_PREFIX/ and $GNUNET_PREFIX/../share/ and start the system
311 with the default configuration.  It is strongly recommended that you
312 add a user "gnunet" to run "gnunet-arm".  You can then still run the
313 end-user applications as another user.
314
315 If you create a system user "gnunet", it is recommended that you edit
316 the configuration file slightly so that data can be stored in the
317 system user home directory at "/var/lib/gnunet".  Depending on what
318 the $HOME-directory of your "gnunet" user is, you might need to set
319 the SERVICEHOME option in section "[PATHS]" to "/var/lib/gnunet" to
320 do this.  Depending on your personal preferences, you may also want to
321 use "/etc/gnunet.conf" for the location of the configuration file in
322 this case (instead of ~gnunet/.config/gnunet.conf").  In this case,
323 you need to start GNUnet using "gnunet-arm -s -c /etc/gnunet.conf" or
324 set "XDG_CONFIG_HOME=/etc/".
325
326 You can avoid running 'make install' as root if you run configure
327 with the "--with-sudo=yes" option and have extensive sudo rights
328 (can run "chmod +s" and "chown" via 'sudo').  If you run 'make install'
329 as a normal user without sudo rights (or the configure option),
330 certain binaries that require additional priviledges will not be
331 installed properly (and autonomous NAT traversal, WLAN, DNS/GNS and
332 the VPN will then not work).
333
334 If you run 'configure' and 'make install' as root or use the '--with-sudo'
335 option, GNUnet's build system will install "libnss_gns*" libraries to
336 "/lib/" regardless (!) of the $GNUNET_PREFIX you might have specified,
337 as those libraries must be in "/lib/".  If you are packaging GNUnet
338 for binary distribution, this may cause your packaging script to miss
339 those plugins, so you might need to do some additional manual work to
340 include those libraries in your binary package(s).  Similarly, if you
341 want to use the GNUnet naming system and did NOT run GNUnet's 'make
342 install' process with sudo rights, the libraries will be installed to
343 "$GNUNET_PREFIX" and you will have to move them to "/lib/"
344 manually.
345
346 Finally, if you are compiling the code from git, you have to
347 run "sh ./bootstrap" before running "./configure".  If you receive an error during
348 the running of "sh ./bootstrap" that looks like "macro `AM_PATH_GTK'
349 not found in library", you may need to run aclocal by hand with the -I
350 option, pointing to your aclocal m4 macros, i.e.
351
352 $ aclocal -I /usr/local/share/aclocal
353
354
355 Configuration
356 =============
357
358 Note that additional, per-user configuration files can be created by
359 each user.  However, this is usually not necessary as there are few
360 per-user options that normal users would want to modify.  The defaults
361 that are shipped with the installation are usually just fine.
362
363 The gnunet-setup tool is particularly useful to generate the master
364 configuration for the peer.  gnunet-setup can be used to configure and
365 test (!) the network settings, choose which applications should be run
366 and configure databases.  Other options you might want to control
367 include system limitations (such as disk space consumption, bandwidth,
368 etc).  The resulting configuration files are human-readable and can
369 theoretically be created or edited by hand.
370
371 gnunet-setup is a separate download and requires somewhat recent
372 versions of GTK+ and Glade. You can also create the configuration file
373 by hand, but this is not recommended.  For more general information
374 about the GNU build process read the INSTALL file.
375
376 GNUnet uses two types of configuration files, one that specifies the
377 system-wide defaults (typically located in
378 $GNUNET_PREFIX/../share/gnunet/config.d/) and a second one that overrides
379 default values with user-specific preferences.  The user-specific
380 configuration file should be located in "~/.config/gnunet.conf" or its
381 location can be specified by giving the "-c" option to the respective
382 GNUnet application.
383
384 For more information about the configuration (as well as usage) refer
385 to the 'GNUnet User Handbook' chapter of the documentation, included
386 in this software distribution.
387
388
389 Usage
390 =====
391
392 For detailed usage notes, instructions and examples, refer to the
393 included 'GNUnet Handbook'.
394
395 First, you must obtain an initial list of GNUnet hosts.  Knowing a
396 single peer is sufficient since after that GNUnet propagates
397 information about other peers.  Note that the default configuration
398 contains URLs from where GNUnet downloads an initial hostlist
399 whenever it is started.  If you want to create an alternative URL for
400 others to use, the file can be generated on any machine running
401 GNUnet by periodically executing
402
403 $ cat $SERVICEHOME/data/hosts/* > the_file
404
405 and offering 'the_file' via your web server.  Alternatively, you can
406 run the build-in web server by adding '-p' to the OPTIONS value
407 in the "hostlist" section of gnunet.conf and opening the respective
408 HTTPPORT to the public.
409
410 If the solution with the hostlist URL is not feasible for your
411 situation, you can also add hosts manually.  Simply copy the hostkeys
412 to "$SERVICEHOME/data/hosts/" (where $SERVICEHOME is the directory
413 specified in the gnunet.conf configuration file).  You can also use
414 "gnunet-peerinfo -g" to GET a URI for a peer and "gnunet-peerinfo -p
415 URI" to add a URI from another peer.  Finally, GNUnet peers that use
416 UDP or WLAN will discover each other automatically (if they are in the
417 vicinity of each other) using broadcasts (IPv4/WLAN) or multicasts
418 (IPv6).
419
420 The local node is started using "gnunet-arm -s".  We recommend to run
421 GNUnet 24/7 if you want to maximize your anonymity, as this makes
422 partitioning attacks harder.
423
424 Once your peer is running, you should then be able to access GNUnet
425 using the shell:
426
427 $ gnunet-search KEYWORD
428
429 This will display a list of results to the console.  You can abort
430 the command using "CTRL-C".  Then use
431
432 $ gnunet-download -o FILENAME GNUNET_URI
433
434 to retrieve a file.  The GNUNET_URI is printed by gnunet-search
435 together with a description.  To publish files on GNUnet, use the
436 "gnunet-publish" command.
437
438
439 The GTK user interface is shipped separately.
440 After installing gnunet-gtk, you can invoke the setup tool and
441 the file-sharing GUI with:
442
443 $ gnunet-setup
444 $ gnunet-fs-gtk
445
446 For further documentation, see our webpage or the 'GNUnet User Handbook',
447 included in this software distribution.
448
449
450 Hacking GNUnet
451 ==============
452
453 Contributions are welcome. Please submit bugs you find to
454 https://bugs.gnunet.org/ or our bugs mailinglist.
455 Please make sure to run the script "contrib/scripts/gnunet-bugreport"
456 and include the output with your bug reports.  More about how to
457 report bugs can be found in the GNUnet FAQ on the webpage.  Submit
458 patches via E-Mail to gnunet-developers@gnu.org, formated with
459 `git format-patch`.
460
461 In order to run the unit tests by hand (instead of using "make check"),
462 you need to set the environment variable "GNUNET_PREFIX" to the
463 directory where GNUnet's libraries are installed.
464 Before running any testcases, you must complete the installation.
465
466 Quick summary:
467
468 $ ./configure --prefix=$SOMEWHERE
469 $ make
470 $ make install
471 $ export $GNUNET_PREFIX=$SOMEWHERE
472 $ make check
473
474 Some of the testcases require python >= 3.7, and the python module
475 "pexpect" to be installed.
476 If any testcases fail to pass on your system, run
477 "contrib/scripts/gnunet-bugreport" (in the repository) or "gnunet-bugreport"
478 when you already have GNUnet installed and report its output together with
479 information about the failing testcase(s) to the Mantis bugtracking
480 system at https://bugs.gnunet.org/.
481
482
483 Running HTTP on port 80 and HTTPS on port 443
484 =============================================
485
486 In order to hide GNUnet's HTTP/HTTPS traffic perfectly, you might
487 consider running GNUnet's HTTP/HTTPS transport on port 80/443.
488 However, we do not recommend running GNUnet as root.  Instead, forward
489 port 80 to say 1080 with this command (as root, in your startup
490 scripts):
491
492 # iptables -t nat -A PREROUTING -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 1080
493
494 or for HTTPS
495
496 # iptables -t nat -A PREROUTING -p tcp -m tcp --dport 443 -j REDIRECT --to-ports 4433
497
498 Then set in the HTTP section of gnunet.conf the "ADVERTISED_PORT" to
499 "80" and "PORT" to 1080 and similarly in the HTTPS section the
500 "ADVERTISED_PORT" to "443" and "PORT" to 4433.
501
502 You can do the same trick for the TCP and UDP transports if you want
503 to map them to a priviledged port (from the point of view of the
504 network).  However, we are not aware of this providing any advantages
505 at this point.
506
507 If you are already running an HTTP or HTTPS server on port 80 (or 443),
508 you may be able to configure it as a "ReverseProxy".  Here, you tell
509 GNUnet that the externally visible URI is some sub-page on your website,
510 and GNUnet can then tunnel its traffic via your existing HTTP server.
511 This is particularly powerful if your existing server uses HTTPS, as
512 it makes it harder for an adversary to distinguish normal traffic to
513 your server from GNUnet traffic.  Finally, even if you just use HTTP,
514 you might benefit (!) from ISP's traffic shaping as opposed to being
515 throttled by ISPs that dislike P2P.  Details for configuring the
516 reverse proxy are documented on our website.
517
518
519 Further Reading
520 ===============
521
522 * Documentation
523
524   A HTML version of the new GNUnet manual is deployed at
525
526     https://docs.gnunet.org
527
528   which currently displays just GNUnet documentation. Until 2019
529   we will add more reading material.
530
531 * Academia / papers
532
533   In almost 20 years various people in our community have written and
534   collected a good number of papers which have been implemented in
535   GNUnet or projects around GNUnet.
536   There are currently 2 ways to get them:
537
538   * Using git (NOTE: 1.1 GiB as of 2019-03-09):
539     git clone https://git.gnunet.org/bibliography.git
540   * Using Drupal:
541     https://old.gnunet.org/bibliography
542
543   The Drupal access will be replaced by a new interface to our
544   bibliography in the foreseeable future.
545
546
547 Stay tuned
548 ==========
549
550 * https://gnunet.org/
551 * https://bugs.gnunet.org
552 * https://git.gnunet.org
553 * http://www.gnu.org/software/gnunet/
554 * http://mail.gnu.org/mailman/listinfo/gnunet-developers
555 * http://mail.gnu.org/mailman/listinfo/help-gnunet
556 * http://mail.gnu.org/mailman/listinfo/info-gnunet
557 * http://mail.gnu.org/mailman/listinfo/gnunet-svn