summaryrefslogtreecommitdiffstats
path: root/src/spdk/intel-ipsec-mb/CONTRIBUTING
blob: 4190b04aad0b816f132e16491d1091be402969a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
Contributing to intel-ipsec-mb
==============================

As an open source project, we welcome contributions of any kind.
These can range from bug reports, code reviews and code development,
to significant code or documentation features.

Note:
There is just one branch used in the project. All development is done on the
master branch. Code taken from the tip of the master branch should not be
considered fit for production.
Refer to the releases tab for stable code versions:
https://github.com/intel/intel-ipsec-mb/releases


How can I contribute?
=====================

This document specifies contributing guidelines to the intel-ipsec-mb source
tree. It covers some general guidelines, the preferred style and formatting
for source files, additional requirements like documentation and development
workflow. The goal of this document is to walk you through the concepts and
specifics that should be understood while contributing to intel-ipsec-mb.


Reporting Bugs
==============

Bugs should be reported via GitHub issues. The description should include
a platform name, OS and kernel version, library version and detailed
information on how to reproduce the bug.


Suggesting Enhancements
=======================

Improvements should be reported via GitHub issues or pull requests.


Creating Pull Requests
======================

Pull requests should be created using standard procedure available on GitHub.
It is important to fill in all required information into a template. For major
modifications (e.g. adding a new feature, refactoring), for effective
development, it is recommended to share high level document with core
development team via GitHub issue so that one can ask questions if one foresees
issues that may occur in existing development.


Coding Style Guides
===================

General Guidelines
==================

The rules and guidelines given in this document cannot cover every situation,
so the following general guidelines should be used as a fallback:

The code style should be consistent within each individual file.
In the case of creating new files, the style should be consistent within
each file in a given directory or module. The primary reason for coding
standards is to increase code readability and comprehensibility, therefore
always use whatever option will make the code easier to read. Line length
is recommended to be not more than 80 characters, including comments.


C
=

Formatting using checkpatch.pl
==============================

To format your code please use checkpatch.pl script (version 0.32) from
Linux kernel
(https://github.com/torvalds/linux/blob/master/scripts/checkpatch.pl).

The top level Makefile contains a target "style" that can be used to check
formatting. Please ensure the checkpatch.pl script has been added to your PATH.


Indentation
===========

Tabs are 8 characters and thus indentations are also 8 characters.
It should be consistent within each part of the code. When adding a new file,
spaces should be used over tabs.


C Comment Style
===============

Usual Comments
==============

These comments should be used in normal cases. To document a public API,
a doxygen-like format must be used: refer to Doxygen Guidelines
(http://www.doxygen.nl/manual/docblocks.html).

/*
 * VERY important single-line comments look like this.
 */

/* Most single-line comments look like this. */

/*
 * Multi-line comments look like this. Make them real sentences. Fill
 * them so they look like real paragraphs.
 */


License Header
==============

Each file should begin with a special comment containing the appropriate
copyright and license for the file. After any copyright header, a blank line
should be left before any other contents, e.g. include statements in a C file.


Preprocessor Directives (Header Includes)
=========================================

Include files from the local application directory are included using quotes,
while includes from other paths are included using angle brackets: "<>".

Example:

#include <stdlib.h>
#include <string.h>

#include "intel-ipsec-mb.h"
#include "asm.h"


Header File Guards
==================

Headers should be protected against multiple inclusion with the usual:

#ifndef _FILE_H_
#define _FILE_H_

/* Code */

#endif /* _FILE_H_ */


Macros
======

You can define a macro similar in C using #define preprocessor directive.

For example:

/**
 * ---------------------------------------
 * Local macros
 * ---------------------------------------
 */

/*
 * Custom ASSERT and DIM macros
 */
#ifdef DEBUG
#include <assert.h>
#define IMB_ASSERT(x) assert(x)
#else
#define IMB_ASSERT(x)
#endif

#ifndef IMB_DIM
#define IMB_DIM(x) (sizeof(x) / sizeof(x[0]))
#endif


ASM
===

Syntax
======

Intel syntax should be used always.


Register Naming
===============

Virtual registers with meaningful names should be used over direct register
names when possible.


Indentation
===========

Tabs are 8 characters and thus indentations are also 8 characters.
To improve readability, instructions should be preceded by a single indent
and followed by one or more indents in order to align the first operand.
Spaces should be used over tabs.

Example:
        vmovdqu         %%T5, [%%GDATA + HashKey_6]
        vpshufd         %%T2, %%XMM2, 01001110b
        vpshufd         %%T3, %%T5, 01001110b
        vpclmulqdq      %%T4, %%XMM2, %%T5, 0x11


Comment Style
=============

Two semicolons should be used for comment lines and a single semicolon
for end of line comments.

Example:
        ;; first phase of the reduction
        vmovdqu         %%T3, [rel POLY2]

        vpclmulqdq      %%T2, %%T3, %%T7, 0x01
        vpslldq         %%T2, %%T2, 8     ; shift-L xmm2 2 DWs


Macros
======

Macros should be used where possible to reduce code duplication. All macros
should be properly documented, specifiying input/output parameters and
their types.

Example:
%macro AESROUND_1_TO_16_BLOCKS 5
%define %%L0B0_3   %1      ; [in/out] ZMM; blocks 0 to 3
%define %%L0B4_7   %2      ; [in/out] ZMM; blocks 4 to 7
%define %%KEY      %3      ; [in] ZMM containing round key
%define %%ROUND    %4      ; [in] numerical value containing round number
%define %%IA0      %5      ; [clobbered] temp GP register

Macros should be located within or before the .text section in the file.


License Header
==============

Each file should begin with a special comment containing the appropriate
copyright and license for the file. After any copyright header, a blank line
should be left before any other contents.


File and Code Structure
=======================

New files should be structured in the following layout:
 1. License header
 2. .data section
 3. .text section

Please see avx512/cntr_vaes_avx512.asm for an example.
All new modules should compile to produce relocatable code.


Public APIs in the library
==========================

All functions that are exposed by the library must have their prototypes
defined in intel-ipsec-mb.h and symbols added to libIPSec_MB.def.


Documentation
=============

Please make sure to update documentation when necessary. If not possible
(e.g. not allowed to edit wiki), propose necessary changes.


Git Commit Messages
===================

Git commit messages should start with a short 50 character or less summary
in a single paragraph. Ideally, it should start with a short prefix
followed by a colon describing which part of the code it modifies
e.g. "LibTestApp: extended AES-CBC tests".


Development Workflow
====================

Clone a repository in the usual way, for example:

git clone https://github.com/intel/intel-ipsec-mb

Once your local repository is set up as above, you must use
the following workflow.

Make sure you have the latest upstream changes:

git remote update
git checkout master
git pull origin master


Committing a Change
===================

Make your changes, commit them, and submit them for review:

git commit -a

To see how to create pull requests on GitHub, please refer to "About pull
requests" help page (https://help.github.com/articles/about-pull-requests/).

Note: Please ensure that you have your username and email address set correctly
to let other developers know about your contribution:

git config --global user.name "Firstname Lastname"
git config --global user.email "your_email@youremail.com"


Licenses
========

The code in this repository is licensed under BSD license (see LICENSE file).