gdt | d9fd04c | 2003-12-19 19:20:25 +0000 | [diff] [blame] | 1 | -*- mode: text; -*- |
ajs | 8035e9f | 2004-12-22 03:16:59 +0000 | [diff] [blame] | 2 | $Id: HACKING,v 1.14 2004/12/22 03:16:59 ajs Exp $ |
gdt | d9fd04c | 2003-12-19 19:20:25 +0000 | [diff] [blame] | 3 | |
| 4 | GUIDELINES FOR HACKING ON QUAGGA |
| 5 | |
gdt | d9fd04c | 2003-12-19 19:20:25 +0000 | [diff] [blame] | 6 | [this is a draft in progress] |
| 7 | |
hasso | 863076d | 2004-09-01 20:13:23 +0000 | [diff] [blame] | 8 | GNU coding standards apply. Indentation follows the result of |
| 9 | invoking GNU indent (as of 2.2.8a) with no arguments. Note that this |
| 10 | uses tabs instead of spaces where possible for leading whitespace, and |
| 11 | assumes that tabs are every 8 columns. Do not attempt to redefine the |
| 12 | location of tab stops. Note also that some indentation does not |
| 13 | follow GNU style. This is a historical accident, and we generally |
| 14 | only clean up whitespace when code is unmaintainable due to whitespace |
| 15 | issues, as fewer changes from zebra lead to easier merges. |
| 16 | |
| 17 | For GNU emacs, use indentation style "gnu". |
| 18 | |
| 19 | For Vim, use the following lines (note that tabs are at 8, and that |
| 20 | softtabstop sets the indentation level): |
| 21 | |
| 22 | set tabstop=8 |
| 23 | set softtabstop=2 |
| 24 | set shiftwidth=2 |
| 25 | set noexpandtab |
gdt | d9fd04c | 2003-12-19 19:20:25 +0000 | [diff] [blame] | 26 | |
gdt | 2934f28 | 2004-01-05 20:09:00 +0000 | [diff] [blame] | 27 | Be particularly careful not to break platforms/protocols that you |
| 28 | cannot test. |
| 29 | |
| 30 | New code should have good comments, and changes to existing code |
| 31 | should in many cases upgrade the comments when necessary for a |
| 32 | reviewer to conclude that the change has no unintended consequences. |
| 33 | |
gdt | 697877e | 2004-11-15 19:23:47 +0000 | [diff] [blame] | 34 | Each file in CVS should have the RCS keyword Id, somewhere very near |
| 35 | the top, commented out appropriately for the file type. Just add |
| 36 | <dollar>Id:<dollar>, replacing <dollar> with $. See line 2 of HACKING |
| 37 | for an example; on checkout :$ is expanded to include the value. |
| 38 | |
ajs | 5e76477 | 2004-12-03 19:03:33 +0000 | [diff] [blame] | 39 | Please document fully the proper use of a new function in the header file |
| 40 | in which it is declared. And please consult existing headers for |
| 41 | documentation on how to use existing functions. In particular, please consult |
| 42 | these header files: |
| 43 | |
| 44 | lib/log.h logging levels and usage guidance |
| 45 | [more to be added] |
| 46 | |
| 47 | |
gdt | 2934f28 | 2004-01-05 20:09:00 +0000 | [diff] [blame] | 48 | CHANGELOG |
| 49 | |
| 50 | Add a ChangeLog entry whenever changing code, except for minor fixes |
| 51 | to a commit (with a ChangeLog entry) within the last few days. |
| 52 | |
gdt | 18323bb | 2004-11-05 13:17:20 +0000 | [diff] [blame] | 53 | Most directories have a ChangeLog file; changes to code in that |
| 54 | directory should go in the per-directory ChangeLog. Global or |
| 55 | structural changes should also be mentioned in the top-level |
| 56 | ChangeLog. |
gdt | 2934f28 | 2004-01-05 20:09:00 +0000 | [diff] [blame] | 57 | |
paul | 1f8f61a | 2004-11-05 23:38:20 +0000 | [diff] [blame] | 58 | Certain directories do not contain project code, but contain project |
| 59 | meta-data, eg packaging information, changes to files in these directory may |
| 60 | not require the global ChangeLog to be updated (at the discretion of the |
| 61 | maintainer who usually maintains that meta-data). Also, CVS meta-data such |
| 62 | as cvsignore files do not require ChangeLog updates, just a sane commit |
| 63 | message. |
| 64 | |
gdt | fbb6709 | 2004-11-15 17:29:11 +0000 | [diff] [blame] | 65 | TOOL VERSIONS |
| 66 | |
| 67 | Require versions of support tools are listed in INSTALL.quagga.txt. |
| 68 | Required versions should only be done with due deliberation, as it can |
| 69 | cause environments to no longer be able to compile quagga. |
| 70 | |
gdt | b7a97f8 | 2004-07-23 16:23:56 +0000 | [diff] [blame] | 71 | SHARED LIBRARY VERSIONING |
| 72 | |
| 73 | [this section is at the moment just gdt's opinion] |
| 74 | |
| 75 | Quagga builds several shared libaries (lib/libzebra, ospfd/libospf, |
| 76 | ospfclient/libsopfapiclient). These may be used by external programs, |
| 77 | e.g. a new routing protocol that works with the zebra daemon, or |
| 78 | ospfapi clients. The libtool info pages (node Versioning) explain |
| 79 | when major and minor version numbers should be changed. These values |
| 80 | are set in Makefile.am near the definition of the library. If you |
| 81 | make a change that requires changing the shared library version, |
| 82 | please update Makefile.am. |
| 83 | |
| 84 | libospf exports far more than it should, and is needed by ospfapi |
| 85 | clients. Only bump libospf for changes to functions for which it is |
| 86 | reasonable for a user of ospfapi to call, and please err on the side |
| 87 | of not bumping. |
| 88 | |
| 89 | There is no support intended for installing part of zebra. The core |
| 90 | library libzebra and the included daemons should always be built and |
| 91 | installed together. |
| 92 | |
gdt | d9fd04c | 2003-12-19 19:20:25 +0000 | [diff] [blame] | 93 | PATCH SUBMISSION |
| 94 | |
paul | 85cf0a0 | 2004-01-09 16:34:54 +0000 | [diff] [blame] | 95 | * Send a clean diff against the head of CVS in unified diff format, eg by: |
| 96 | cvs <cvs opts> diff -uwb .... |
gdt | d9fd04c | 2003-12-19 19:20:25 +0000 | [diff] [blame] | 97 | |
| 98 | * Include ChangeLog and NEWS entries as appropriate before the patch |
| 99 | (or in it if you are 100% up to date). |
| 100 | |
gdt | 18323bb | 2004-11-05 13:17:20 +0000 | [diff] [blame] | 101 | * Include only one semantic change or group of changes per patch. |
gdt | d9fd04c | 2003-12-19 19:20:25 +0000 | [diff] [blame] | 102 | |
paul | 85cf0a0 | 2004-01-09 16:34:54 +0000 | [diff] [blame] | 103 | * Do not make gratuitous changes to whitespace. See the w and b arguments |
| 104 | to diff. |
gdt | d9fd04c | 2003-12-19 19:20:25 +0000 | [diff] [blame] | 105 | |
| 106 | * State on which platforms and with what daemons the patch has been |
| 107 | tested. Understand that if the set of testing locations is small, |
| 108 | and the patch might have unforeseen or hard to fix consequences that |
| 109 | there may be a call for testers on quagga-dev, and that the patch |
| 110 | may be blocked until test results appear. |
| 111 | |
| 112 | If there are no users for a platform on quagga-dev who are able and |
| 113 | willing to verify -current occasionally, that platform may be |
| 114 | dropped from the "should be checked" list. |
| 115 | |
| 116 | PATCH APPLICATION TO CVS |
| 117 | |
| 118 | * Only apply patches that meet the submission guidelines. |
| 119 | |
| 120 | * If a patch is large (perhaps more than 100 new/changed lines), tag |
| 121 | the repository before and after the change with e.g. before-foo-fix |
| 122 | and after-foo-fix. |
| 123 | |
| 124 | * If the patch might break something, issue a call for testing on the |
| 125 | mailinglist. |
| 126 | |
paul | 4134ceb | 2004-05-13 13:38:06 +0000 | [diff] [blame] | 127 | * Give an appropriate commit message, eg the ChangeLog entry should suffice, |
paul | 1f8f61a | 2004-11-05 23:38:20 +0000 | [diff] [blame] | 128 | if it does not, then the ChangeLog entry itself needs to be corrected. The |
| 129 | commit message text should be identical to that added to the ChangeLog |
| 130 | message. (One suggestion: when commiting, use your editor to read in the |
| 131 | ChangeLog and delete all previous ChangeLogs.) |
paul | 4134ceb | 2004-05-13 13:38:06 +0000 | [diff] [blame] | 132 | |
gdt | d9fd04c | 2003-12-19 19:20:25 +0000 | [diff] [blame] | 133 | * By committing a patch, you are responsible for fixing problems |
| 134 | resulting from it (or backing it out). |
| 135 | |
| 136 | STABLE PLATFORMS AND DAEMONS |
| 137 | |
| 138 | The list of platforms that should be tested follow. This is a list |
| 139 | derived from what quagga is thought to run on and for which |
| 140 | maintainers can test or there are people on quagga-dev who are able |
| 141 | and willing to verify that -current does or does not work correctly. |
| 142 | |
| 143 | BSD (Free, Net or Open, any platform) # without capabilities |
| 144 | GNU/Linux (any distribution, i386) |
paul | 1f8f61a | 2004-11-05 23:38:20 +0000 | [diff] [blame] | 145 | Solaris (strict alignment, any platform) |
gdt | 18323bb | 2004-11-05 13:17:20 +0000 | [diff] [blame] | 146 | [future: NetBSD/sparc64] |
gdt | d9fd04c | 2003-12-19 19:20:25 +0000 | [diff] [blame] | 147 | |
| 148 | The list of daemons that are thought to be stable and that should be |
| 149 | tested are: |
| 150 | |
| 151 | zebra |
| 152 | bgpd |
| 153 | ripd |
| 154 | ospfd |
| 155 | ripngd |
gdt | 1f431d2 | 2003-12-22 15:45:01 +0000 | [diff] [blame] | 156 | |
gdt | 18323bb | 2004-11-05 13:17:20 +0000 | [diff] [blame] | 157 | Daemons which are in a testing phase are |
| 158 | |
| 159 | ospf6d |
| 160 | isisd |
ajs | 8035e9f | 2004-12-22 03:16:59 +0000 | [diff] [blame] | 161 | watchquagga |
gdt | 18323bb | 2004-11-05 13:17:20 +0000 | [diff] [blame] | 162 | |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 163 | IMPORT OR UPDATE VENDOR SPECIFIC ROUTING PROTOCOLS |
| 164 | |
| 165 | The source code of Quagga is based on two vendors: |
| 166 | |
| 167 | zebra_org (http://www.zebra.org/) |
| 168 | isisd_sf (http://isisd.sf.net/) |
| 169 | |
gdt | 18323bb | 2004-11-05 13:17:20 +0000 | [diff] [blame] | 170 | [20041105: Is isisd.sf.netf still where isisd word is happening, or is |
| 171 | the quagga repo now the canonical place? The last tarball on sf is |
| 172 | two years old. --gdt] |
| 173 | |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 174 | In order to import source code, the following procedure should be used: |
| 175 | |
| 176 | * Tag the Current Quagga CVS repository: |
| 177 | |
| 178 | cvs tag import_isisd_sf_20031223 |
| 179 | |
| 180 | * Import the source code into the Quagga's framework. You must not modified |
| 181 | this source code. It will be merged later. |
| 182 | |
| 183 | cd dir_isisd |
| 184 | export CVSROOT=:pserver:LOGIN@anoncvs.quagga.net:/var/cvsroot |
| 185 | cvs import quagga/isisd isisd_sf isisd_sf_20031223 |
| 186 | ---COMMENTS--- |
| 187 | Vendor: [isisd_sf] Sampo's ISISd from Sourceforge |
| 188 | Tag: [isisd_sf_20031217] Current CVS release |
| 189 | --- |
| 190 | |
| 191 | * Update your Quagga's directory: |
| 192 | |
| 193 | cd dir_quagga |
| 194 | cvs update -dP |
| 195 | |
| 196 | or |
| 197 | |
| 198 | cvs co -d quagga_isisd quagga |
| 199 | |
| 200 | * Merge the code, then commit: |
| 201 | |
| 202 | cvs commit |
| 203 | |