Skip to content

Commit f73eeec

Browse files
author
Ben Tyner
authored
Add support for ACF V2 and targeted ACF. (#29)
Add support for targeted ACF which leverages ACF V2 in new ibm-acf subproject ce-login. Much of the ACF V1 code was rewritten in order to remove redundant code in ibm-acf and phosphor-certificate-manager and to to be more in line with ACF V2 requirements and to properly leverage the ce-login libraries. This support is made available to other components, including phosphor- certificate-manager, as dependency tacf. Service ACF V1 is still supported. Signed-off-by: Ben Tyner <[email protected]>
1 parent ec97155 commit f73eeec

11 files changed

+1629
-336
lines changed

meson.build

+6-1
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,10 @@ else
7272
libcelogin_dep = sp.get_variable('lib_ce_login_dep')
7373
deps = [sdbusplus, libcrypto, libssl, libcelogin_dep, pam]
7474

75-
library('pam_ibmacf', 'src/pam_ibmacf.cpp', pic : true, name_prefix : '', dependencies : deps, install : true, install_dir : '/lib/security')
75+
# sub directores may add source files and include directoies
76+
sources = []
77+
incdir = []
78+
subdir('src')
79+
80+
library('pam_ibmacf', sources, include_directories : incdir, pic : true, name_prefix : '', dependencies : deps, install : true, install_dir : '/lib/security')
7681
endif

src/.clang-format

+117
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
---
2+
Language: Cpp
3+
# BasedOnStyle: LLVM
4+
AccessModifierOffset: -2
5+
AlignAfterOpenBracket: Align
6+
AlignConsecutiveAssignments: true
7+
AlignConsecutiveDeclarations: false
8+
AlignEscapedNewlines: Right
9+
AlignOperands: true
10+
AlignTrailingComments: true
11+
AllowAllParametersOfDeclarationOnNextLine: true
12+
AllowShortBlocksOnASingleLine: false
13+
AllowShortCaseLabelsOnASingleLine: false
14+
AllowShortFunctionsOnASingleLine: Empty
15+
AllowShortIfStatementsOnASingleLine: false
16+
AllowShortLoopsOnASingleLine: false
17+
AlwaysBreakAfterReturnType: None
18+
AlwaysBreakBeforeMultilineStrings: false
19+
AlwaysBreakTemplateDeclarations: Yes
20+
BinPackArguments: true
21+
BinPackParameters: true
22+
BraceWrapping:
23+
AfterCaseLabel: true
24+
AfterClass: true
25+
AfterControlStatement: true
26+
AfterEnum: true
27+
AfterFunction: true
28+
AfterNamespace: true
29+
AfterObjCDeclaration: true
30+
AfterStruct: true
31+
AfterUnion: true
32+
AfterExternBlock: true
33+
BeforeCatch: true
34+
BeforeElse: true
35+
IndentBraces: false
36+
SplitEmptyFunction: false
37+
SplitEmptyRecord: false
38+
SplitEmptyNamespace: false
39+
BreakBeforeBinaryOperators: None
40+
BreakBeforeBraces: Custom
41+
BreakBeforeTernaryOperators: true
42+
BreakConstructorInitializers: AfterColon
43+
BreakInheritanceList: AfterColon
44+
BreakStringLiterals: true
45+
ColumnLimit: 80
46+
CommentPragmas: '^ IWYU pragma:'
47+
CompactNamespaces: false
48+
ConstructorInitializerAllOnOneLineOrOnePerLine: false
49+
ConstructorInitializerIndentWidth: 4
50+
ContinuationIndentWidth: 4
51+
Cpp11BracedListStyle: true
52+
DeriveLineEnding: false
53+
DerivePointerAlignment: false
54+
PointerAlignment: Left
55+
DisableFormat: false
56+
ExperimentalAutoDetectBinPacking: false
57+
FixNamespaceComments: true
58+
ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
59+
IncludeBlocks: Regroup
60+
IncludeCategories:
61+
- Regex: '^[<"](gtest|gmock)'
62+
Priority: 7
63+
- Regex: '^"config.h"'
64+
Priority: -1
65+
- Regex: '^".*\.h"'
66+
Priority: 1
67+
- Regex: '^".*\.hpp"'
68+
Priority: 2
69+
- Regex: '^<.*\.h>'
70+
Priority: 3
71+
- Regex: '^<.*\.hpp>'
72+
Priority: 4
73+
- Regex: '^<.*'
74+
Priority: 5
75+
- Regex: '.*'
76+
Priority: 6
77+
IndentCaseLabels: true
78+
IndentWidth: 4
79+
IndentWrappedFunctionNames: true
80+
KeepEmptyLinesAtTheStartOfBlocks: false
81+
MacroBlockBegin: ''
82+
MacroBlockEnd: ''
83+
MaxEmptyLinesToKeep: 1
84+
NamespaceIndentation: None
85+
ObjCBlockIndentWidth: 2
86+
ObjCSpaceAfterProperty: false
87+
ObjCSpaceBeforeProtocolList: true
88+
PenaltyBreakBeforeFirstCallParameter: 19
89+
PenaltyBreakComment: 300
90+
PenaltyBreakFirstLessLess: 120
91+
PenaltyBreakString: 1000
92+
PenaltyExcessCharacter: 1000000
93+
PenaltyReturnTypeOnItsOwnLine: 60
94+
ReflowComments: true
95+
SortIncludes: true
96+
SortUsingDeclarations: true
97+
SpaceAfterCStyleCast: false
98+
SpaceAfterTemplateKeyword: true
99+
SpaceBeforeAssignmentOperators: true
100+
SpaceBeforeCpp11BracedList: false
101+
SpaceBeforeCtorInitializerColon: true
102+
SpaceBeforeInheritanceColon: true
103+
SpaceBeforeParens: ControlStatements
104+
SpaceBeforeRangeBasedForLoopColon: true
105+
SpaceInEmptyParentheses: false
106+
SpacesBeforeTrailingComments: 1
107+
SpacesInAngles: false
108+
SpacesInContainerLiterals: true
109+
SpacesInCStyleCastParentheses: false
110+
SpacesInParentheses: false
111+
SpacesInSquareBrackets: false
112+
Standard: Latest
113+
TabWidth: 4
114+
UseCRLF: false
115+
UseTab: Never
116+
...
117+

src/meson.build

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
subdir('tacf')
2+
incdir += include_directories('tacf')
3+
sources += files('pam_ibmacf.cpp')

0 commit comments

Comments
 (0)