forked from netlore/OpenAKC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openakc-rhel.spec
349 lines (301 loc) · 12.4 KB
/
openakc-rhel.spec
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
Name: openakc
Version: 1.0.0~alpha15
Release: 1%{?dist}
Summary: This OpenAKC "client" package contains the client ssh plugin which queries the API for authentication information.
Group: Applications/System
License: GPLv2.0
URL: https://github.com/netlore/OpenAKC
Source0: https://github.com/netlore/OpenAKC/archive/master.zip
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
Requires: openssh-clients, openssh-server >= 7.0, openssl >= 0.9.8, openakc-shared, bash, coreutils, hostname, which, e2fsprogs, libcap >= 2.0
Conflicts: openakc-server
BuildRequires: gcc, gcc-c++, bash, libcap-devel, openssl-devel, patch, unzip, tar
#, shc < 3.9
%package tools
Summary: This OpenAKC "tools" package contains tools for registering with the server and for managing OpenAKC via the API.
Requires: openssl >= 0.9.8, openakc-shared, bash, coreutils, hostname, sudo, which
%package server
Summary: This OpenAKC "server" package contains the API server which answers client authentication requests.
Requires: xinetd, openssh-clients >= 7.0, openssl >= 0.9.8, openakc-tools, openakc-shared, bash, coreutils
Conflicts: openakc
%package shared
Summary: This OpenAKC "shared" package contains shared components used by all packages.
Requires: openssl >= 0.9.8, bash, coreutils, e2fsprogs
%description
OpenAKC is a set of tools for managing SSH Keys and user access to role users
on Linux hosts based on a server which has access to a directory such as
AD/LDAP or even local users. Only the server, which could be shared with a
bastion requires directory access. It provides privalage escalation,
authorization, authentication and connection all rolled into one. With
optional management of statically deployed keys and session recording for
security/review.
%description tools
OpenAKC is a set of tools for managing SSH Keys and user access to role users
on Linux hosts based on a server which has access to a directory such as
AD/LDAP or even local users. Only the server, which could be shared with a
bastion requires directory access. It provides privalage escalation,
authorization, authentication and connection all rolled into one. With
optional management of statically deployed keys and session recording for
security/review.
%description server
OpenAKC is a set of tools for managing SSH Keys and user access to role users
on Linux hosts based on a server which has access to a directory such as
AD/LDAP or even local users. Only the server, which could be shared with a
bastion requires directory access. It provides privalage escalation,
authorization, authentication and connection all rolled into one. With
optional management of statically deployed keys and session recording for
security/review.
%description shared
OpenAKC is a set of tools for managing SSH Keys and user access to role users
on Linux hosts based on a server which has access to a directory such as
AD/LDAP or even local users. Only the server, which could be shared with a
bastion requires directory access. It provides privalage escalation,
authorization, authentication and connection all rolled into one. With
optional management of statically deployed keys and session recording for
security/review.
%prep
%setup -q -c
%install
#
cd OpenAKC*
#
mkdir -p %{buildroot}/etc/openakc
mkdir -p %{buildroot}/usr/sbin
mkdir -p %{buildroot}/usr/bin
mkdir -p %{buildroot}/var/lib/openakc
mkdir -p %{buildroot}/var/lib/openakc/libexec
mkdir -p %{buildroot}/etc/sudoers.d
mkdir -p %{buildroot}/etc/xinetd.d
mkdir -p %{buildroot}/etc/rsyslog.d
#mkdir -p %{buildroot}/etc/cron.daily
#mkdir -p %{buildroot}/tmp
echo "Building OpenAKC Capability Tool"
cd tools/openakc-cap
gcc -fPIC -O2 -Dlinux -Wall -Wwrite-strings -Wpointer-arith -Wcast-qual -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Wshadow -g -c openakc-cap.c -o openakc-cap.o
gcc -O2 -Dlinux -Wall -Wwrite-strings -Wpointer-arith -Wcast-qual -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Wshadow -g -o openakc-cap openakc-cap.o -lcap
cp openakc-cap -p %{buildroot}/usr/bin
cd ../..
echo "Unpacking Tools"
cd tools
unzip -q hpenc-3.0.zip
unzip -q libsodium-1.0.18-RELEASE.zip
cd ..
echo "Building Sodium Security Library"
cd tools/libsodium-1.0.18-RELEASE
./configure
make
cd ../..
echo "Building HPEnc stream encryption tool"
cd tools/hpenc-3.0/src
cp ../../libsodium-1.0.18-RELEASE/src/libsodium/include/sodium.h .
cp ../../libsodium-1.0.18-RELEASE/src/libsodium/.libs/libsodium.a .
cp -dpR ../../libsodium-1.0.18-RELEASE/src/libsodium/include/sodium .
patch -p0 < ../../../resources/hpenc30.src.Makefile.patch
cd ..
make
cd ../..
echo "Compiling Shell Scripts"
cd bin
#
cp ../tools/hpenc-3.0/src/hpenc ./openakc-hpenc
#
sed -i "s,^RELEASE=.*,RELEASE=\"%{version}-%{release}\",g" openakc
##shc -v -r -T -f openakc
cp openakc openakc.x
#
sed -i "s,^RELEASE=.*,RELEASE=\"%{version}-%{release}\",g" openakc-server
##shc -v -r -T -f openakc-server
cp openakc-server openakc-server.x
#
sed -i "s,^RELEASE=.*,RELEASE=\"%{version}-%{release}\",g" openakc-plugin
##shc -v -r -T -f openakc-plugin
cp openakc-plugin openakc-plugin.x
#
sed -i "s,^RELEASE=.*,RELEASE=\"%{version}-%{release}\",g" openakc-session
##shc -v -r -T -f openakc-session
cp openakc-session openakc-session.x
echo "Building RPM Package Tree"
cd ..
cp bin/openakc-hpenc %{buildroot}/usr/bin/openakc-hpenc
cp bin/openakc.x %{buildroot}/usr/bin/openakc
cp bin/openakc-plugin.x %{buildroot}/usr/sbin/openakc-plugin
cp bin/openakc-session.x %{buildroot}/usr/bin/openakc-session
cp bin/openakc-server.x %{buildroot}/usr/sbin/openakc-server
cp bin/openakc-functions %{buildroot}/var/lib/openakc/libexec/functions-%{version}-%{release}
cp resources/openakc-sudoers %{buildroot}/etc/sudoers.d/openakc
cp resources/openakc-xinetd %{buildroot}/etc/xinetd.d/openakc
cp resources/openakc-rsyslog %{buildroot}/etc/rsyslog.d/99-openakc.conf
cp resources/openakc.conf %{buildroot}/etc/openakc/openakc.conf
cp resources/openakc.conf.readme %{buildroot}/etc/openakc/openakc.conf.readme
%clean
rm -rf %{buildroot}
%pre
#echo "Preroll = $*"
if ! getent group openakc >/dev/null ; then
if ! getent group 889 >/dev/null ; then
groupadd -r -g 889 openakc
else
groupadd -r openakc
fi
fi
#
if ! getent passwd openakc >/dev/null ; then
if ! getent passwd 889 >/dev/null ; then
useradd -r -u 889 -g openakc -d /var/lib/openakc -s /bin/bash -c "OpenAKC" openakc
else
useradd -r -g openakc -d /var/lib/openakc -s /bin/bash -c "OpenAKC" openakc
fi
fi
chage -I -1 -m 0 -M 99999 -E -1 openakc 2> /dev/null 1> /dev/null
chsh -s /bin/nologin openakc 2> /dev/null 1> /dev/null
passwd -u openakc 2> /dev/null 1> /dev/null
#
[ -f /etc/openakc/openakc.conf ]&&chattr -i /etc/openakc/openakc.conf
[ -d /etc/openakc ]&&chattr -i /etc/openakc
[ -d /var/lib/openakc ]&&chattr -a /var/lib/openakc
[ -f /usr/bin/openakc-cap ]&&chattr -i /usr/bin/openakc-cap
[ -f /usr/bin/openakc-hpenc ]&&chattr -i /usr/bin/openakc-hpenc
[ -f /usr/bin/openakc-session ]&&chattr -i /usr/bin/openakc-session
[ -f /usr/sbin/openakc-plugin ]&&chattr -i /usr/sbin/openakc-plugin
exit 0
%pre server
[ -d /var/lib/openakc ]&&chattr -a /var/lib/openakc
exit 0
%pre shared
[ -d /var/lib/openakc/libexec ]&&chattr -i /var/lib/openakc/libexec
[ -f /var/lib/openakc/libexec/functions-%{version}-%{release} ]&&chattr -i /var/lib/openakc/libexec/functions-%{version}-%{release}
exit 0
%post
#echo "Postroll = $*"
setcap CAP_SETPCAP+ep /usr/bin/openakc-cap
chown -R root:openakc /etc/openakc
sed -i "s,^#AuthorizedKeysCommand .*$,AuthorizedKeysCommand /usr/sbin/openakc-plugin %u %h %f,g" /etc/ssh/sshd_config
sed -i "s,^#AuthorizedKeysCommandUser .*$,AuthorizedKeysCommandUser openakc,g" /etc/ssh/sshd_config
/sbin/service sshd restart > /dev/null 2>&1 || :
#
chattr +i /etc/openakc/openakc.conf
chattr +i /etc/openakc
chattr +i /usr/bin/openakc-cap
chattr +i /usr/bin/openakc-hpenc
chattr +i /usr/bin/openakc-session
chattr +i /usr/sbin/openakc-plugin
chattr +a /var/lib/openakc
#chattr +a /etc/ssh
#chattr +i /etc/ssh/sshd_config
exit 0
#%post tools
%post server
if [ ! -n "`grep \"^#includedir /etc/sudoers.d\" /etc/sudoers`" ]; then
echo "#includedir /etc/sudoers.d" >> /etc/sudoers
fi
sed -i '/^openakc/ d' /etc/services
echo "openakc 889/tcp # OpenAKC Authentication Protocol" >> /etc/services
/sbin/service xinetd restart > /dev/null 2>&1 || :
exit 0
%post shared
[ ! -f /var/lib/openakc/libexec/functions-%{version}-%{release}.cache ]&&cp /var/lib/openakc/libexec/functions-%{version}-%{release} /var/lib/openakc/libexec/functions-%{version}-%{release}.cache
chattr +i /var/lib/openakc/libexec
chattr +i /var/lib/openakc/libexec/functions-%{version}-%{release}
chattr +i /var/lib/openakc/libexec/functions-%{version}-%{release}.cache
exit 0
%preun
[ -d /etc/openakc ]&&chattr -i /etc/openakc
[ -d /var/lib/openakc ]&&chattr -a /var/lib/openakc
[ -f /etc/openakc/openakc.conf ]&&chattr -i /etc/openakc/openakc.conf
[ -f /usr/bin/openakc-cap ]&&chattr -i /usr/bin/openakc-cap
[ -f /usr/bin/openakc-hpenc ]&&chattr -i /usr/bin/openakc-hpenc
[ -f /usr/bin/openakc-session ]&&chattr -i /usr/bin/openakc-session
[ -f /usr/sbin/openakc-plugin ]&&chattr -i /usr/sbin/openakc-plugin
#chattr -a /etc/ssh
#chattr -i /etc/ssh/sshd_config
exit 0
%preun shared
chattr -a /var/lib/openakc
chattr -i /var/lib/openakc/libexec
chattr -i /var/lib/openakc/libexec/functions-%{version}-%{release}
exit 0
%postun
case "$*" in
0) # This is a yum remove.
#echo "OpenAKC Remove!"
chsh -s /bin/nologin openakc 2> /dev/null 1> /dev/null
passwd -l openakc 2> /dev/null 1> /dev/null
sed -i "s,^AuthorizedKeysCommand,#AuthorizedKeysCommand,g" /etc/ssh/sshd_config
;;
1) # This is a yum update.
#echo "OpenAKC Update!"
;;
*)
echo "Warning: RPM says there is more than one version of openakc installed!"
echo "Please refer to your system administrator, this should never happen."
esac
exit 0
%postun server
case "$*" in
0) # This is a yum remove.
#echo "OpenAKC Server Remove!"
sed -i '/^openakc/ d' /etc/services
/sbin/service xinetd restart > /dev/null 2>&1 || :
;;
1) # This is a yum update.
#echo "OpenAKC Server Update!"
;;
*)
echo "Warning: RPM says there is more than one version of openakc-server installed!"
echo "Please refer to your system administrator, this should never happen."
esac
exit 0
%postun shared
[ -d /var/lib/openakc ]&&chattr +a /var/lib/openakc
exit 0
%files
%defattr(-,root,root,-)
%attr(755, root, root) /usr/bin/openakc-cap
%attr(755, root, root) /usr/bin/openakc-hpenc
%attr(755, root, root) /usr/sbin/openakc-plugin
%attr(755, root, root) /usr/bin/openakc-session
%dir %attr(755, root, root) /etc/openakc
%dir %attr(755, openakc, root) /var/lib/openakc
%attr(644, root, openakc) %config /etc/openakc/openakc.conf
%attr(644, root, openakc) %config(missingok) /etc/openakc/openakc.conf.readme
%doc OpenAKC*/LICENSE
%doc OpenAKC*/LICENSE-hpenc
%doc OpenAKC*/LICENSE-libsodium
%files tools
%defattr(-,root,root,-)
%attr(755, root, root) /usr/bin/openakc
%doc OpenAKC*/LICENSE
#%doc OpenAKC*/docs/OpenAKC_Tools_Guide.pdf
%files server
%defattr(-,root,root,-)
%attr(755, root, root) /usr/bin/openakc-hpenc
%attr(755, root, root) /usr/sbin/openakc-server
%attr(640, root, root) %config(missingok) /etc/sudoers.d/openakc
%attr(640, root, root) %config(missingok) /etc/xinetd.d/openakc
%doc OpenAKC*/LICENSE
%doc OpenAKC*/LICENSE-hpenc
%doc OpenAKC*/LICENSE-libsodium
%doc OpenAKC*/QUICKSTART.txt
%doc OpenAKC*/docs/OpenAKC_Admin_Guide.pdf
%files shared
%defattr(-,root,root,-)
%attr(640, root, root) %config(missingok) /etc/rsyslog.d/99-openakc.conf
%attr(644, root, root) /var/lib/openakc/libexec/functions-%{version}-%{release}
%dir %attr(755, root, root) /var/lib/openakc/libexec
%doc OpenAKC*/LICENSE
%changelog
* Mon Aug 31 2020 James Lewis <james@fsck.co.uk>
- Added shared package to contain stuff that everything depends on
- Added handling for immutable components
* Sun Aug 30 2020 James Lewis <james@fsck.co.uk>
- Added rsyslog filter for debug messages as RHEL ignores them
* Mon Mar 02 2020 James Lewis <james@fsck.co.uk>
- Fixed some permissions issues
* Tue Feb 25 2020 James Lewis <james@fsck.co.uk>
- Renamed README file to QUICKSTART.txt
* Wed Feb 19 2020 James Lewis <james@fsck.co.uk>
- Added a bunch of documentation to the package
* Wed Dec 04 2019 James Lewis <james@fsck.co.uk>
- Many and various packaging fixes, and testing.
* Tue Nov 26 2019 James Lewis <james@fsck.co.uk>
- Initial Packaging