blob: 984152d3f4453b48f01a27cd31414887d8c400ee [file] [log] [blame]
gdtd9fd04c2003-12-19 19:20:25 +00001-*- mode: text; -*-
2
paul1f8f61a2004-11-05 23:38:20 +00003$Id: HACKING,v 1.10 2004/11/05 23:38:20 paul Exp $
gdtd9fd04c2003-12-19 19:20:25 +00004
5GUIDELINES FOR HACKING ON QUAGGA
6
gdtd9fd04c2003-12-19 19:20:25 +00007[this is a draft in progress]
8
hasso863076d2004-09-01 20:13:23 +00009GNU coding standards apply. Indentation follows the result of
10invoking GNU indent (as of 2.2.8a) with no arguments. Note that this
11uses tabs instead of spaces where possible for leading whitespace, and
12assumes that tabs are every 8 columns. Do not attempt to redefine the
13location of tab stops. Note also that some indentation does not
14follow GNU style. This is a historical accident, and we generally
15only clean up whitespace when code is unmaintainable due to whitespace
16issues, as fewer changes from zebra lead to easier merges.
17
18For GNU emacs, use indentation style "gnu".
19
20For Vim, use the following lines (note that tabs are at 8, and that
21softtabstop sets the indentation level):
22
23set tabstop=8
24set softtabstop=2
25set shiftwidth=2
26set noexpandtab
gdtd9fd04c2003-12-19 19:20:25 +000027
gdt2934f282004-01-05 20:09:00 +000028Be particularly careful not to break platforms/protocols that you
29cannot test.
30
31New code should have good comments, and changes to existing code
32should in many cases upgrade the comments when necessary for a
33reviewer to conclude that the change has no unintended consequences.
34
35CHANGELOG
36
37Add a ChangeLog entry whenever changing code, except for minor fixes
38to a commit (with a ChangeLog entry) within the last few days.
39
gdt18323bb2004-11-05 13:17:20 +000040Most directories have a ChangeLog file; changes to code in that
41directory should go in the per-directory ChangeLog. Global or
42structural changes should also be mentioned in the top-level
43ChangeLog.
gdt2934f282004-01-05 20:09:00 +000044
paul1f8f61a2004-11-05 23:38:20 +000045Certain directories do not contain project code, but contain project
46meta-data, eg packaging information, changes to files in these directory may
47not require the global ChangeLog to be updated (at the discretion of the
48maintainer who usually maintains that meta-data). Also, CVS meta-data such
49as cvsignore files do not require ChangeLog updates, just a sane commit
50message.
51
gdtb7a97f82004-07-23 16:23:56 +000052SHARED LIBRARY VERSIONING
53
54[this section is at the moment just gdt's opinion]
55
56Quagga builds several shared libaries (lib/libzebra, ospfd/libospf,
57ospfclient/libsopfapiclient). These may be used by external programs,
58e.g. a new routing protocol that works with the zebra daemon, or
59ospfapi clients. The libtool info pages (node Versioning) explain
60when major and minor version numbers should be changed. These values
61are set in Makefile.am near the definition of the library. If you
62make a change that requires changing the shared library version,
63please update Makefile.am.
64
65libospf exports far more than it should, and is needed by ospfapi
66clients. Only bump libospf for changes to functions for which it is
67reasonable for a user of ospfapi to call, and please err on the side
68of not bumping.
69
70There is no support intended for installing part of zebra. The core
71library libzebra and the included daemons should always be built and
72installed together.
73
gdtd9fd04c2003-12-19 19:20:25 +000074PATCH SUBMISSION
75
paul85cf0a02004-01-09 16:34:54 +000076* Send a clean diff against the head of CVS in unified diff format, eg by:
77 cvs <cvs opts> diff -uwb ....
gdtd9fd04c2003-12-19 19:20:25 +000078
79* Include ChangeLog and NEWS entries as appropriate before the patch
80 (or in it if you are 100% up to date).
81
gdt18323bb2004-11-05 13:17:20 +000082* Include only one semantic change or group of changes per patch.
gdtd9fd04c2003-12-19 19:20:25 +000083
paul85cf0a02004-01-09 16:34:54 +000084* Do not make gratuitous changes to whitespace. See the w and b arguments
85 to diff.
gdtd9fd04c2003-12-19 19:20:25 +000086
87* State on which platforms and with what daemons the patch has been
88 tested. Understand that if the set of testing locations is small,
89 and the patch might have unforeseen or hard to fix consequences that
90 there may be a call for testers on quagga-dev, and that the patch
91 may be blocked until test results appear.
92
93 If there are no users for a platform on quagga-dev who are able and
94 willing to verify -current occasionally, that platform may be
95 dropped from the "should be checked" list.
96
97PATCH APPLICATION TO CVS
98
99* Only apply patches that meet the submission guidelines.
100
101* If a patch is large (perhaps more than 100 new/changed lines), tag
102 the repository before and after the change with e.g. before-foo-fix
103 and after-foo-fix.
104
105* If the patch might break something, issue a call for testing on the
106 mailinglist.
107
paul4134ceb2004-05-13 13:38:06 +0000108* Give an appropriate commit message, eg the ChangeLog entry should suffice,
paul1f8f61a2004-11-05 23:38:20 +0000109 if it does not, then the ChangeLog entry itself needs to be corrected. The
110 commit message text should be identical to that added to the ChangeLog
111 message. (One suggestion: when commiting, use your editor to read in the
112 ChangeLog and delete all previous ChangeLogs.)
paul4134ceb2004-05-13 13:38:06 +0000113
gdtd9fd04c2003-12-19 19:20:25 +0000114* By committing a patch, you are responsible for fixing problems
115 resulting from it (or backing it out).
116
117STABLE PLATFORMS AND DAEMONS
118
119The list of platforms that should be tested follow. This is a list
120derived from what quagga is thought to run on and for which
121maintainers can test or there are people on quagga-dev who are able
122and willing to verify that -current does or does not work correctly.
123
124 BSD (Free, Net or Open, any platform) # without capabilities
125 GNU/Linux (any distribution, i386)
paul1f8f61a2004-11-05 23:38:20 +0000126 Solaris (strict alignment, any platform)
gdt18323bb2004-11-05 13:17:20 +0000127 [future: NetBSD/sparc64]
gdtd9fd04c2003-12-19 19:20:25 +0000128
129The list of daemons that are thought to be stable and that should be
130tested are:
131
132 zebra
133 bgpd
134 ripd
135 ospfd
136 ripngd
gdt1f431d22003-12-22 15:45:01 +0000137
gdt18323bb2004-11-05 13:17:20 +0000138Daemons which are in a testing phase are
139
140 ospf6d
141 isisd
142
jardin9e867fe2003-12-23 08:56:18 +0000143IMPORT OR UPDATE VENDOR SPECIFIC ROUTING PROTOCOLS
144
145The source code of Quagga is based on two vendors:
146
147 zebra_org (http://www.zebra.org/)
148 isisd_sf (http://isisd.sf.net/)
149
gdt18323bb2004-11-05 13:17:20 +0000150[20041105: Is isisd.sf.netf still where isisd word is happening, or is
151the quagga repo now the canonical place? The last tarball on sf is
152two years old. --gdt]
153
jardin9e867fe2003-12-23 08:56:18 +0000154In order to import source code, the following procedure should be used:
155
156* Tag the Current Quagga CVS repository:
157
158 cvs tag import_isisd_sf_20031223
159
160* Import the source code into the Quagga's framework. You must not modified
161 this source code. It will be merged later.
162
163 cd dir_isisd
164 export CVSROOT=:pserver:LOGIN@anoncvs.quagga.net:/var/cvsroot
165 cvs import quagga/isisd isisd_sf isisd_sf_20031223
166 ---COMMENTS---
167 Vendor: [isisd_sf] Sampo's ISISd from Sourceforge
168 Tag: [isisd_sf_20031217] Current CVS release
169 ---
170
171* Update your Quagga's directory:
172
173 cd dir_quagga
174 cvs update -dP
175
176 or
177
178 cvs co -d quagga_isisd quagga
179
180* Merge the code, then commit:
181
182 cvs commit
183