a7bfb80b95987c2e0c25f5be2d1e96289d91cfcd
[novacoin.git] / doc / build-unix.txt
1 Copyright (c) 2009-2012 Bitcoin Developers
2 Copyright (c) 2013 NovaCoin Developers
3 Distributed under the MIT/X11 software license, see the accompanying
4 file license.txt or http://www.opensource.org/licenses/mit-license.php.
5 This product includes software developed by the OpenSSL Project for use in
6 the OpenSSL Toolkit (http://www.openssl.org/).  This product includes
7 cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP
8 software written by Thomas Bernard.
9
10
11 UNIX BUILD NOTES
12 ================
13
14 To Build
15 --------
16
17 cd src/
18 make -f makefile.unix            # Headless novacoin
19
20 See readme-qt.rst for instructions on building NovaCoin QT,
21 the graphical novacoin.
22
23 Dependencies
24 ------------
25
26  Library     Purpose           Description
27  -------     -------           -----------
28  libssl      SSL Support       Secure communications
29  libdb4.8    Berkeley DB       Blockchain & wallet storage
30  libboost    Boost             C++ Library
31  miniupnpc   UPnP Support      Optional firewall-jumping support
32  libqrencode QRCode generation Optional QRCode generation
33
34 Note that libexecinfo should be installed, if you building under *BSD systems. 
35 This library provides backtrace facility.
36
37 miniupnpc may be used for UPnP port mapping.  It can be downloaded from
38 http://miniupnp.tuxfamily.org/files/.  UPnP support is compiled in and
39 turned off by default.  Set USE_UPNP to a different value to control this:
40  USE_UPNP=-    No UPnP support - miniupnp not required
41  USE_UPNP=0    (the default) UPnP support turned off by default at runtime
42  USE_UPNP=1    UPnP support turned on by default at runtime
43
44 libqrencode is used for QRCode image generation. It can be downloaded
45 from http://fukuchi.org/works/qrencode/index.html.en, or installed via
46 your package manager.
47
48 Licenses of statically linked libraries:
49  Berkeley DB   New BSD license with additional requirement that linked
50                software must be free open source
51  Boost         MIT-like license
52  miniupnpc     New (3-clause) BSD license
53
54 Versions used in this release:
55  GCC           4.3.3
56  OpenSSL       0.9.8g
57  Berkeley DB   4.8.30.NC
58  Boost         1.37
59  miniupnpc     1.6
60
61 Dependency Build Instructions: Ubuntu & Debian
62 ----------------------------------------------
63 sudo apt-get install build-essential
64 sudo apt-get install libssl-dev
65 sudo apt-get install libdb4.8-dev
66 sudo apt-get install libdb4.8++-dev
67  Boost 1.40+: sudo apt-get install libboost-all-dev
68  or Boost 1.37: sudo apt-get install libboost1.37-dev
69 sudo apt-get install libqrencode-dev
70
71 If using Boost 1.37, append -mt to the boost libraries in the makefile.
72
73
74 Dependency Build Instructions: Gentoo
75 -------------------------------------
76
77 Note: If you just want to install novacoind on Gentoo, you can add the Novacoin
78       overlay and use your package manager:
79           layman -a novacoin && emerge novacoind
80
81 emerge -av1 --noreplace boost glib openssl sys-libs/db:4.8
82
83 Take the following steps to build (no UPnP support):
84  cd ${NOVACOIN_DIR}/src
85  make -f makefile.unix USE_UPNP= BDB_INCLUDE_PATH='/usr/include/db4.8'
86  strip novacoind
87
88
89 Notes
90 -----
91 The release is built with GCC and then "strip novacoind" to strip the debug
92 symbols, which reduces the executable size by about 90%.
93
94
95 miniupnpc
96 ---------
97 tar -xzvf miniupnpc-1.6.tar.gz
98 cd miniupnpc-1.6
99 make
100 sudo su
101 make install
102
103
104 Berkeley DB
105 -----------
106 You need Berkeley DB 4.8.  If you have to build Berkeley DB yourself:
107 ../dist/configure --enable-cxx
108 make
109
110
111 Boost
112 -----
113 If you need to build Boost yourself:
114 sudo su
115 ./bootstrap.sh
116 ./bjam install
117
118
119 Security
120 --------
121 To help make your novacoin installation more secure by making certain attacks impossible to
122 exploit even if a vulnerability is found, you can take the following measures:
123
124 * Position Independent Executable
125     Build position independent code to take advantage of Address Space Layout Randomization
126     offered by some kernels. An attacker who is able to cause execution of code at an arbitrary
127     memory location is thwarted if he doesn't know where anything useful is located.
128     The stack and heap are randomly located by default but this allows the code section to be
129     randomly located as well.
130
131     On an Amd64 processor where a library was not compiled with -fPIC, this will cause an error
132     such as: "relocation R_X86_64_32 against `......' can not be used when making a shared object;"
133
134     To build with PIE, use:
135     make -f makefile.unix ... -e PIE=1
136
137     To test that you have built PIE executable, install scanelf, part of paxutils, and use:
138     scanelf -e ./novacoin
139
140     The output should contain:
141      TYPE
142     ET_DYN
143
144 * Non-executable Stack
145     If the stack is executable then trivial stack based buffer overflow exploits are possible if
146     vulnerable buffers are found. By default, novacoin should be built with a non-executable stack
147     but if one of the libraries it uses asks for an executable stack or someone makes a mistake
148     and uses a compiler extension which requires an executable stack, it will silently build an
149     executable without the non-executable stack protection.
150
151     To verify that the stack is non-executable after compiling use:
152     scanelf -e ./novacoin
153
154     the output should contain:
155     STK/REL/PTL
156     RW- R-- RW-
157
158     The STK RW- means that the stack is readable and writeable but not executable.