README 21 KB

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