Skip to content

Commit b34ccb4

Browse files
committed
First basic gRPC setup:
- Implemented gRPC client and server functionality, as well as mTLS. - Implemented a basic gRPC protocol and message types. - Implemented a basic server binary with different commands. - Added simple documentation. - Added license information and helper scripts. - Added scripts for generation of test certificates.
1 parent c85dfbd commit b34ccb4

34 files changed

+2346
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.pprof
2+
.*

.scripts/copyright_text.txt

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
IRIS Endpoint-Server (EPS)
2+
Copyright (C) 2021-{year} The IRIS Endpoint-Server Authors (see AUTHORS.md)
3+
4+
This program is free software: you can redistribute it and/or modify
5+
it under the terms of the GNU Affero General Public License as
6+
published by the Free Software Foundation, either version 3 of the
7+
License, or (at your option) any later version.
8+
9+
This program is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
GNU Affero General Public License for more details.
13+
14+
You should have received a copy of the GNU Affero General Public License
15+
along with this program. If not, see <https://www.gnu.org/licenses/>.

.scripts/make_certs.sh

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/bin/bash
2+
# This script generates test & development certificates. Not for production use!
3+
4+
O="IRIS"
5+
ST="Berlin"
6+
L="Berlin"
7+
C="DE"
8+
OU="IT"
9+
CN="Testing-Development"
10+
# using less than 1024 here will result in a TLS handshake failure
11+
LEN="1024"
12+
13+
14+
openssl genrsa -out rootCA.key ${LEN}
15+
openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 1024 -out rootCA.crt -subj "/C=${C}/ST=${ST}/L=${L}/O=${O}/OU=${OU}/CN=${CN}"
16+
17+
declare -a certs=("grpc-client" "grpc-server" "jsonrpc-client" "jsonrpc-server")
18+
19+
for cert in "${certs[@]}"
20+
do
21+
echo "Generating and signing certificates for ${cert}...";
22+
openssl genrsa -out "${cert}.key" ${LEN};
23+
openssl rsa -in "${cert}.key" -pubout -out "${cert}.pub";
24+
openssl req -new -sha256 -key "${cert}.key" -subj "/C=${C}/ST=${ST}/L=${L}/O=${O}/OU=${OU}/CN=${cert}" -out "${cert}.csr";
25+
openssl x509 -req -in "${cert}.csr" -CA rootCA.crt -CAkey rootCA.key -CAcreateserial -out "${cert}.crt" -days 500 -sha256;
26+
done

.scripts/make_copyright_headers.py

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
import datetime
2+
import os
3+
4+
script_dir = os.path.dirname(os.path.abspath(__file__))
5+
source_dirs = [os.path.dirname(script_dir)]
6+
context = {}
7+
8+
def read_copyright():
9+
with open(os.path.join(script_dir,'copyright_text.txt')) as input_file:
10+
return input_file.read().strip()
11+
12+
def format_copyright(text):
13+
c = context.copy()
14+
c['year'] = datetime.datetime.now().year
15+
return "\n".join([("// "+ t).strip() for t in text.format(**c).split("\n")])
16+
17+
def process_file(path, copyright_notice):
18+
with open(path) as input:
19+
content = input.read()
20+
lines = content.split("\n")
21+
for line in lines:
22+
if line.strip() == "// no-copyright-header":
23+
return
24+
for i, line in enumerate(lines):
25+
if not line.startswith('//'):
26+
break
27+
if lines[i].strip() == '':
28+
i+=1
29+
lines = lines[i:]
30+
new_content = copyright_notice+"\n\n"+"\n".join(lines)
31+
print("Writing {}".format(path))
32+
with open(path, 'w') as output:
33+
output.write(new_content)
34+
35+
36+
def enumerate_files(dir, extensions=['.go'], exclude=set([])):
37+
for file in os.listdir(dir):
38+
path = os.path.join(dir, file)
39+
if file.startswith('.'):
40+
continue
41+
if os.path.isdir(path) and file not in exclude:
42+
for path in enumerate_files(path):
43+
yield path
44+
else:
45+
for extension in extensions:
46+
if file.endswith(extension):
47+
yield path
48+
if __name__ == '__main__':
49+
copyright_notice = format_copyright(read_copyright())
50+
for source_dir in source_dirs:
51+
for path in enumerate_files(source_dir):
52+
process_file(path, copyright_notice)

AUTHORS.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Authors
2+
3+
This file lists all individual authors that have contributed significant code to this project. This does not necessarly list minor contributors, please refert to the git commit log for a full list of these.
4+
5+
* Andreas Dewes

0 commit comments

Comments
 (0)