Add certificate generation and revokation
This commit is contained in:
parent
9324f6f5fa
commit
ede5bb18b1
8 changed files with 577 additions and 2 deletions
1
admin/.gitignore
vendored
1
admin/.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
admin
|
admin
|
||||||
fic.db
|
fic.db
|
||||||
|
PKI/
|
||||||
|
|
|
@ -14,6 +14,7 @@ type DispatchFunction func([]string, []byte) (interface{}, error)
|
||||||
|
|
||||||
var apiRoutes = map[string]*(map[string]DispatchFunction){
|
var apiRoutes = map[string]*(map[string]DispatchFunction){
|
||||||
"version": &ApiVersionRouting,
|
"version": &ApiVersionRouting,
|
||||||
|
"ca": &ApiCARouting,
|
||||||
"themes": &ApiThemesRouting,
|
"themes": &ApiThemesRouting,
|
||||||
"teams": &ApiTeamsRouting,
|
"teams": &ApiTeamsRouting,
|
||||||
}
|
}
|
||||||
|
|
32
admin/api_certificate.go
Normal file
32
admin/api_certificate.go
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io/ioutil"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"srs.epita.fr/fic-server/libfic"
|
||||||
|
)
|
||||||
|
|
||||||
|
func CertificateAPI(team fic.Team, args []string) (interface{}, error) {
|
||||||
|
if len(args) == 1 {
|
||||||
|
if args[0] == "generate" {
|
||||||
|
return team.GenerateCert(), nil
|
||||||
|
} else if args[0] == "revoke" {
|
||||||
|
return team.RevokeCert(), nil
|
||||||
|
} else {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
} else if fd, err := os.Open("../PKI/pkcs/" + team.Name + ".p12"); err == nil {
|
||||||
|
return ioutil.ReadAll(fd)
|
||||||
|
} else {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var ApiCARouting = map[string]DispatchFunction{
|
||||||
|
"GET": genCA,
|
||||||
|
}
|
||||||
|
|
||||||
|
func genCA(args []string, body []byte) (interface{}, error) {
|
||||||
|
return fic.GenerateCA(), nil
|
||||||
|
}
|
|
@ -107,13 +107,15 @@ type uploadedMember struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func listTeam(args []string, body []byte) (interface{}, error) {
|
func listTeam(args []string, body []byte) (interface{}, error) {
|
||||||
if len(args) == 2 {
|
if len(args) >= 2 {
|
||||||
if tid, err := strconv.Atoi(string(args[0])); err != nil {
|
if tid, err := strconv.Atoi(string(args[0])); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
} else if team, err := fic.GetTeam(tid); err != nil {
|
} else if team, err := fic.GetTeam(tid); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
} else if args[1] == "my.json" {
|
} else if args[1] == "my.json" {
|
||||||
return myJSONTeam(team)
|
return myJSONTeam(team)
|
||||||
|
} else if args[1] == "certificate" {
|
||||||
|
return CertificateAPI(team, args[2:])
|
||||||
}
|
}
|
||||||
} else if len(args) == 1 {
|
} else if len(args) == 1 {
|
||||||
if args[0] == "nginx" {
|
if args[0] == "nginx" {
|
||||||
|
@ -133,7 +135,25 @@ func listTeam(args []string, body []byte) (interface{}, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func creationTeam(args []string, body []byte) (interface{}, error) {
|
func creationTeam(args []string, body []byte) (interface{}, error) {
|
||||||
if len(args) == 0 {
|
if len(args) == 1 {
|
||||||
|
// List given team
|
||||||
|
if tid, err := strconv.Atoi(string(args[0])); err != nil {
|
||||||
|
return nil, err
|
||||||
|
} else if team, err := fic.GetTeam(tid); err != nil {
|
||||||
|
return nil, err
|
||||||
|
} else {
|
||||||
|
var members []uploadedMember
|
||||||
|
if err := json.Unmarshal(body, &members); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, member := range members {
|
||||||
|
team.AddMember(member.Firstname, member.Lastname, member.Nickname, member.Company)
|
||||||
|
}
|
||||||
|
|
||||||
|
return team.GetMembers()
|
||||||
|
}
|
||||||
|
} else if len(args) == 0 {
|
||||||
// Create a new team
|
// Create a new team
|
||||||
var ut uploadedTeam
|
var ut uploadedTeam
|
||||||
if err := json.Unmarshal(body, &ut); err != nil {
|
if err := json.Unmarshal(body, &ut); err != nil {
|
||||||
|
|
|
@ -10,6 +10,7 @@ import (
|
||||||
"srs.epita.fr/fic-server/libfic"
|
"srs.epita.fr/fic-server/libfic"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var PKIDir string
|
||||||
var SubmissionDir string
|
var SubmissionDir string
|
||||||
var BaseURL string
|
var BaseURL string
|
||||||
|
|
||||||
|
@ -18,6 +19,7 @@ func main() {
|
||||||
var dbfile = flag.String("db", "fic.db", "Path to the DB")
|
var dbfile = flag.String("db", "fic.db", "Path to the DB")
|
||||||
flag.StringVar(&BaseURL, "baseurl", "http://fic.srs.epita.fr/", "URL prepended to each URL")
|
flag.StringVar(&BaseURL, "baseurl", "http://fic.srs.epita.fr/", "URL prepended to each URL")
|
||||||
flag.StringVar(&SubmissionDir, "submission", "./submissions/", "Base directory where save submissions")
|
flag.StringVar(&SubmissionDir, "submission", "./submissions/", "Base directory where save submissions")
|
||||||
|
flag.StringVar(&PKIDir, "pki", "./pki/", "Base directory where found PKI scripts")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
log.Println("Opening database...")
|
log.Println("Opening database...")
|
||||||
|
@ -35,6 +37,8 @@ func main() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
os.Chdir(PKIDir)
|
||||||
|
|
||||||
log.Println("Registering handlers...")
|
log.Println("Registering handlers...")
|
||||||
mux := http.NewServeMux()
|
mux := http.NewServeMux()
|
||||||
mux.Handle("/api/", http.StripPrefix("/api", ApiHandler()))
|
mux.Handle("/api/", http.StripPrefix("/api", ApiHandler()))
|
||||||
|
|
284
admin/pki/CA.sh
Executable file
284
admin/pki/CA.sh
Executable file
|
@ -0,0 +1,284 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
cd $(dirname "$0")
|
||||||
|
|
||||||
|
if [ -z "${PKI_BASEDIR}" ]; then
|
||||||
|
PKI_BASEDIR=$(dirname `pwd`) # equivalent to $(realpath `pwd`/..
|
||||||
|
fi
|
||||||
|
|
||||||
|
PKI_DIR=${PKI_BASEDIR}/PKI
|
||||||
|
SHARED_DIR=${PKI_DIR}/shared
|
||||||
|
OPENSSL_CONF=`pwd`/openssl.cnf
|
||||||
|
|
||||||
|
CAKEY=${PKI_DIR}/private/cakey.key
|
||||||
|
CAREQ=${PKI_DIR}/careq.csr
|
||||||
|
CACRT=${SHARED_DIR}/cacert.crt
|
||||||
|
CADER=${SHARED_DIR}/cacert.der
|
||||||
|
|
||||||
|
SRVKEY=${SHARED_DIR}/server.key
|
||||||
|
SRVREQ=${SHARED_DIR}/server.csr
|
||||||
|
SRVCRT=${SHARED_DIR}/server.crt
|
||||||
|
|
||||||
|
# Generate certificates valid for:
|
||||||
|
DAYS=2
|
||||||
|
STARTDATE=160125000000Z
|
||||||
|
ENDDATE=160126235959Z
|
||||||
|
VALIDITY="-startdate ${STARTDATE} -enddate ${ENDDATE}"
|
||||||
|
#VALIDITY="-days ${DAYS}"
|
||||||
|
|
||||||
|
if [ -z "$PS1" ]
|
||||||
|
then
|
||||||
|
GREEN="\033[1;32m"
|
||||||
|
RED="\033[1;31m"
|
||||||
|
COLOR_RST="\033[0m"
|
||||||
|
BOLD=""
|
||||||
|
END_BOLD=""
|
||||||
|
ECHO_OPTS="-e"
|
||||||
|
else
|
||||||
|
GREEN="<font color=green>"
|
||||||
|
RED="<font color=red>"
|
||||||
|
COLOR_RST="</font>"
|
||||||
|
BOLD="<strong>"
|
||||||
|
END_BOLD="</strong>"
|
||||||
|
ECHO_OPTS=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
usage()
|
||||||
|
{
|
||||||
|
echo "Usage: $0 (-newca|-newserver IP/URL|-revokeserver|-newclient NAME|-revoke NAME|-gencrl)"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
clean()
|
||||||
|
{
|
||||||
|
if [ "$1" = "ca" ]; then
|
||||||
|
rm -rf ${PKI_DIR}/* ${SHARED_DIR}/*
|
||||||
|
mkdir -p ${PKI_DIR}/certs ${PKI_DIR}/crl ${PKI_DIR}/newcerts \
|
||||||
|
${PKI_DIR}/private ${PKI_DIR}/pkcs ${SHARED_DIR}
|
||||||
|
echo "01" > ${PKI_DIR}/crlnumber
|
||||||
|
elif [ "$1" = "client" ]; then
|
||||||
|
rm -rf ${PKI_DIR}/${2}.key ${PKI_DIR}/${2}.csr
|
||||||
|
fi
|
||||||
|
rm -rf $OUTPUT
|
||||||
|
}
|
||||||
|
|
||||||
|
gen_crl()
|
||||||
|
{
|
||||||
|
echo $ECHO_OPTS "${GREEN}Generate shared/crl.pem${COLOR_RST}"
|
||||||
|
if ! openssl ca -config ${OPENSSL_CONF} -gencrl -out ${SHARED_DIR}/crl.pem > $OUTPUT 2>&1
|
||||||
|
then
|
||||||
|
echo $ECHO_OPTS "${RED}Generate shared/crl.pem failed"
|
||||||
|
cat $OUTPUT
|
||||||
|
exit 5
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
[ $# -lt 1 ] && usage
|
||||||
|
|
||||||
|
OUTPUT=$(mktemp)
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
"-newca" )
|
||||||
|
echo $ECHO_OPTS "${GREEN}Create the directories, take care this will delete the old directories ${COLOR_RST}"
|
||||||
|
|
||||||
|
clean "ca"
|
||||||
|
touch ${PKI_DIR}/index.txt
|
||||||
|
|
||||||
|
ESCAPED=$(echo "${PKI_DIR}" | sed 's/[\/\.]/\\&/g')
|
||||||
|
|
||||||
|
echo $ECHO_OPTS "${GREEN}Making CA key and csr${COLOR_RST}"
|
||||||
|
sed -i 's/=.*#COMMONNAME/= FIC CA #COMMONNAME/' $OPENSSL_CONF
|
||||||
|
sed -i "s/=.*#DIR/= ${ESCAPED} #DIR/" $OPENSSL_CONF
|
||||||
|
sed -i "s/=.*#DAYS/= ${DAYS} #DAYS/" $OPENSSL_CONF
|
||||||
|
|
||||||
|
type pwgen > /dev/null
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "command not found: pwgen"
|
||||||
|
exit 5
|
||||||
|
fi
|
||||||
|
|
||||||
|
pass=`pwgen -n -B -y 12 1`
|
||||||
|
if ! openssl req -batch -new -keyout ${CAKEY} \
|
||||||
|
-out ${CAREQ} -passout pass:$pass \
|
||||||
|
-config ${OPENSSL_CONF} -extensions CORE_CA > $OUTPUT 2>&1
|
||||||
|
then
|
||||||
|
cat $OUTPUT
|
||||||
|
clean "ca"
|
||||||
|
exit 4
|
||||||
|
fi
|
||||||
|
|
||||||
|
# This line deleted the passphase for the FIC 2014 automatisation
|
||||||
|
if ! openssl rsa -passin pass:$pass -in ${CAKEY} \
|
||||||
|
-out ${CAKEY} > $OUTPUT 2>&1
|
||||||
|
then
|
||||||
|
cat $OUTPUT
|
||||||
|
clean "ca"
|
||||||
|
exit 4
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo $ECHO_OPTS "${GREEN}Self signes the CA certificate${COLOR_RST}"
|
||||||
|
if ! openssl ca -batch -create_serial -out ${CACRT} \
|
||||||
|
${VALIDITY} -keyfile ${CAKEY} \
|
||||||
|
-selfsign -extensions CORE_CA -config ${OPENSSL_CONF} \
|
||||||
|
-infiles ${CAREQ} > $OUTPUT 2>&1
|
||||||
|
then
|
||||||
|
cat $OUTPUT
|
||||||
|
clean "ca"
|
||||||
|
exit 4
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo $ECHO_OPTS "${GREEN}Generate DER format${COLOR_RST}"
|
||||||
|
openssl x509 -in ${CACRT} -inform PEM -out ${CADER} -outform DER
|
||||||
|
;;
|
||||||
|
|
||||||
|
"-newserver" )
|
||||||
|
if [ $# -lt 2 ]; then
|
||||||
|
echo "Give as first argument the production IP or the domain that this certificat will cover."
|
||||||
|
echo "eg.: $0 -newserver 10.42.23.69"
|
||||||
|
echo " $0 -newserver fic.srs.epita.fr"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo $ECHO_OPTS "${GREEN}Making the Server key and cert${COLOR_RST}"
|
||||||
|
if ! [ -f ${CAKEY} ]; then
|
||||||
|
echo $ECHO_OPTS "${RED}Can not found the CA's key${COLOR_RST}"
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
sed -i "s/=.*#COMMONNAME/=$2#COMMONNAME/" $OPENSSL_CONF
|
||||||
|
sed -i "s/=.*#DAYS/= ${DAYS} #DAYS/" $OPENSSL_CONF
|
||||||
|
if ! openssl req -batch -new -keyout ${SRVKEY} -out ${SRVREQ} \
|
||||||
|
-days ${DAYS} -config ${OPENSSL_CONF} -extensions SERVER_SSL > $OUTPUT 2>&1
|
||||||
|
then
|
||||||
|
cat $OUTPUT
|
||||||
|
exit 4
|
||||||
|
fi
|
||||||
|
echo $ECHO_OPTS "${GREEN}Signing the Server crt${COLOR_RST}"
|
||||||
|
if ! openssl ca -policy policy_match -config ${OPENSSL_CONF} \
|
||||||
|
-out ${SRVCRT} -extensions SERVER_SSL -infiles ${SRVREQ}
|
||||||
|
then
|
||||||
|
echo $ECHO_OPTS "${RED}Signing failed for new server${COLOR_RST}"
|
||||||
|
rm -f ${SRVKEY} ${SRVREQ} ${SRVCRT}
|
||||||
|
cat $OUTPUT
|
||||||
|
exit 3
|
||||||
|
else
|
||||||
|
rm ${SRVREQ}
|
||||||
|
echo $ECHO_OPTS "${GREEN}Signed certificate is in ${SRVCRT}${COLOR_RST}"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
"-revokeserver" )
|
||||||
|
echo $ECHO_OPTS "${GREEN}Revocate server certificate${COLOR_RST}"
|
||||||
|
if ! [ -f ${CAKEY} ]; then
|
||||||
|
echo $ECHO_OPTS "${RED}Can not found the CA's key${COLOR_RST}"
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
if ! openssl ca -revoke ${SRVCRT} -config ${OPENSSL_CONF} \
|
||||||
|
-keyfile ${CAKEY} -cert ${CACRT} > $OUTPUT 2>&1
|
||||||
|
then
|
||||||
|
echo $ECHO_OPTS "${RED}Server certificate revocation failed${COLOR_RST}"
|
||||||
|
cat $OUTPUT
|
||||||
|
exit 4
|
||||||
|
fi
|
||||||
|
rm ${SRVKEY} ${SRVCRT}
|
||||||
|
|
||||||
|
gen_crl
|
||||||
|
;;
|
||||||
|
|
||||||
|
"-newclient" )
|
||||||
|
if [ $# -ne 2 ]; then
|
||||||
|
echo "Usage: $0 -newclient NAME"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
CLTNAM=$2
|
||||||
|
CLTREQ=${PKI_DIR}/${CLTNAM}.csr
|
||||||
|
CLTCRT=${PKI_DIR}/certs/${CLTNAM}.crt
|
||||||
|
CLTKEY=${PKI_DIR}/${CLTNAM}.key
|
||||||
|
CLTP12=${PKI_DIR}/pkcs/${CLTNAM}.p12
|
||||||
|
|
||||||
|
echo "=============================================================="
|
||||||
|
echo $ECHO_OPTS "${GREEN}Making the client key and csr of ${BOLD}${2}${END_BOLD}${COLOR_RST}"
|
||||||
|
|
||||||
|
ESCAPED=$(echo "${PKI_DIR}" | sed 's/[\/\.]/\\&/g')
|
||||||
|
sed -i "s/=.*#DIR/= ${ESCAPED} #DIR/" $OPENSSL_CONF
|
||||||
|
sed -i "s/=.*#DAYS/= ${DAYS} #DAYS/" $OPENSSL_CONF
|
||||||
|
|
||||||
|
if ! [ -f ${CAKEY} ]; then
|
||||||
|
echo $ECHO_OPTS "${RED}Can not found the CA's key${COLOR_RST}"
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
sed -i "s/=.*#COMMONNAME/= $2#COMMONNAME/" $OPENSSL_CONF
|
||||||
|
|
||||||
|
type pwgen > /dev/null
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "command not found: pwgen"
|
||||||
|
exit 5
|
||||||
|
fi
|
||||||
|
|
||||||
|
pass=`pwgen -n -B -y 12 1`
|
||||||
|
|
||||||
|
if ! openssl req -batch -new -keyout "${CLTKEY}" -out "${CLTREQ}" \
|
||||||
|
-config ${OPENSSL_CONF} -passout pass:$pass -days ${DAYS} -extensions CLIENT_SSL > $OUTPUT 2>&1
|
||||||
|
then
|
||||||
|
cat $OUTPUT
|
||||||
|
clean "client" ${CLTNAM}
|
||||||
|
exit 4
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo $ECHO_OPTS "${GREEN}Signing the Client crt${COLOR_RST}"
|
||||||
|
if ! openssl ca -batch -policy policy_match -out "${CLTCRT}" \
|
||||||
|
-config ${OPENSSL_CONF} -extensions CLIENT_SSL -infiles "${CLTREQ}" > $OUTPUT 2>&1
|
||||||
|
then
|
||||||
|
echo $ECHO_OPTS "${RED}Signing failed for $2 ${COLOR_RST}"
|
||||||
|
cat $OUTPUT
|
||||||
|
clean "client" ${CLTNAM}
|
||||||
|
exit 3
|
||||||
|
fi
|
||||||
|
echo $ECHO_OPTS "${GREEN}Export the Client files to pkcs12${COLOR_RST}"
|
||||||
|
if ! openssl pkcs12 -export -inkey "${CLTKEY}" -in "${CLTCRT}" -name ${2} \
|
||||||
|
-passin pass:$pass -out "${CLTP12}" \
|
||||||
|
-passout pass:$pass > $OUTPUT 2>&1
|
||||||
|
then
|
||||||
|
echo $ECHO_OPTS "${RED}pkcs12 export failed for ${BOLD}$2${END_BOLD}${COLOR_RST}"
|
||||||
|
cat $OUTPUT
|
||||||
|
clean "client" ${CLTNAM}
|
||||||
|
exit 4
|
||||||
|
else
|
||||||
|
echo $ECHO_OPTS "Exported pkcs12 file is ${CLTP12}"
|
||||||
|
fi
|
||||||
|
echo "$CLTNAM:$pass" >> ${PKI_DIR}/teams.pass
|
||||||
|
echo "$CLTNAM:$pass"
|
||||||
|
clean "client" ${CLTNAM}
|
||||||
|
;;
|
||||||
|
|
||||||
|
"-revoke" )
|
||||||
|
if [ $# -ne 2 ]; then
|
||||||
|
echo "Usage: $0 -revoke NAME"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
CLTNAM=$2
|
||||||
|
CLTCRT=${PKI_DIR}/certs/${CLTNAM}.crt
|
||||||
|
CLTP12=${PKI_DIR}/pkcs/${CLTNAM}.p12
|
||||||
|
|
||||||
|
echo $ECHO_OPTS "${GREEN}Revocate ${BOLD}${CLTNAM}${END_BOLD}${COLOR_RST}"
|
||||||
|
if ! openssl ca -revoke "${CLTCRT}" -config "${OPENSSL_CONF}" \
|
||||||
|
-keyfile "${CAKEY}" -cert "${CACRT}" > $OUTPUT 2>&1
|
||||||
|
then
|
||||||
|
echo $ECHO_OPTS "${RED}Revocation failed for ${BOLD}${CLTNAM}${END_BOLD}${COLOR_RST}"
|
||||||
|
cat $OUTPUT
|
||||||
|
exit 4
|
||||||
|
fi
|
||||||
|
rm "${CLTCRT}" "${CLTP12}"
|
||||||
|
|
||||||
|
gen_crl
|
||||||
|
;;
|
||||||
|
|
||||||
|
"-gencrl" )
|
||||||
|
gen_crl
|
||||||
|
;;
|
||||||
|
|
||||||
|
* )
|
||||||
|
usage
|
||||||
|
;;
|
||||||
|
esac
|
197
admin/pki/openssl.cnf
Normal file
197
admin/pki/openssl.cnf
Normal file
|
@ -0,0 +1,197 @@
|
||||||
|
#
|
||||||
|
# OpenSSL example configuration file.
|
||||||
|
# This is mostly being used for generation of certificate requests.
|
||||||
|
#
|
||||||
|
|
||||||
|
# This definition stops the following lines choking if HOME isn't
|
||||||
|
# defined.
|
||||||
|
HOME = .
|
||||||
|
RANDFILE = $ENV::HOME/.rnd
|
||||||
|
|
||||||
|
# Extra OBJECT IDENTIFIER info:
|
||||||
|
#oid_file = $ENV::HOME/.oid
|
||||||
|
oid_section = new_oids
|
||||||
|
|
||||||
|
# To use this configuration file with the "-extfile" option of the
|
||||||
|
# "openssl x509" utility, name here the section containing the
|
||||||
|
# X.509v3 extensions to use:
|
||||||
|
# extensions =
|
||||||
|
# (Alternatively, use a configuration file that has only
|
||||||
|
# X.509v3 extensions in its main [= default] section.)
|
||||||
|
|
||||||
|
[ new_oids ]
|
||||||
|
|
||||||
|
# We can add new OIDs in here for use by 'ca', 'req' and 'ts'.
|
||||||
|
# Add a simple OID like this:
|
||||||
|
# testoid1=1.2.3.4
|
||||||
|
# Or use config file substitution like this:
|
||||||
|
# testoid2=${testoid1}.5.6
|
||||||
|
|
||||||
|
# Policies used by the TSA examples.
|
||||||
|
tsa_policy1 = 1.2.3.4.1
|
||||||
|
tsa_policy2 = 1.2.3.4.5.6
|
||||||
|
tsa_policy3 = 1.2.3.4.5.7
|
||||||
|
|
||||||
|
####################################################################
|
||||||
|
[ ca ]
|
||||||
|
default_ca = CA_default # The default ca section
|
||||||
|
|
||||||
|
####################################################################
|
||||||
|
[ CA_default ]
|
||||||
|
|
||||||
|
dir = /home/nemunaire/workspace/gowks/src/srs.epita.fr/fic-server/admin/PKI #DIR # Where everything is kept
|
||||||
|
certs = $dir/certs # Where the issued certs are kept
|
||||||
|
crl_dir = $dir/crl # Where the issued crl are kept
|
||||||
|
database = $dir/index.txt # database index file.
|
||||||
|
#unique_subject = no # Set to 'no' to allow creation of
|
||||||
|
# several ctificates with same subject.
|
||||||
|
new_certs_dir = $dir/newcerts # default place for new certs.
|
||||||
|
|
||||||
|
certificate = $dir/shared/cacert.crt # The CA certificate
|
||||||
|
serial = $dir/serial # The current serial number
|
||||||
|
crlnumber = $dir/crlnumber # the current crl number
|
||||||
|
# must be commented out to leave a V1 CRL
|
||||||
|
crl = $dir/shared/crl.pem # The current CRL
|
||||||
|
private_key = $dir/private/cakey.key # The private key
|
||||||
|
RANDFILE = $dir/private/.rand # private random number file
|
||||||
|
|
||||||
|
# Comment out the following two lines for the "traditional"
|
||||||
|
# (and highly broken) format.
|
||||||
|
name_opt = ca_default # Subject Name options
|
||||||
|
cert_opt = ca_default # Certificate field options
|
||||||
|
|
||||||
|
# Extension copying option: use with caution.
|
||||||
|
# copy_extensions = copy
|
||||||
|
|
||||||
|
# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs
|
||||||
|
# so this is commented out by default to leave a V1 CRL.
|
||||||
|
# crlnumber must also be commented out to leave a V1 CRL.
|
||||||
|
# crl_extensions = crl_ext
|
||||||
|
|
||||||
|
default_days = 2 #DAYS
|
||||||
|
default_crl_days= 1 # how long before next CRL
|
||||||
|
default_md = default # use public key default MD
|
||||||
|
preserve = no # keep passed DN ordering
|
||||||
|
|
||||||
|
# A few difference way of specifying how similar the request should look
|
||||||
|
# For type CA, the listed attributes must be the same, and the optional
|
||||||
|
# and supplied fields are just that :-)
|
||||||
|
policy = policy_match
|
||||||
|
|
||||||
|
# For the CA policy
|
||||||
|
[ policy_match ]
|
||||||
|
countryName = match
|
||||||
|
stateOrProvinceName = match
|
||||||
|
organizationName = match
|
||||||
|
organizationalUnitName = optional
|
||||||
|
commonName = supplied
|
||||||
|
emailAddress = optional
|
||||||
|
|
||||||
|
# For the 'anything' policy
|
||||||
|
# At this point in time, you must list all acceptable 'object'
|
||||||
|
# types.
|
||||||
|
[ policy_anything ]
|
||||||
|
countryName = optional
|
||||||
|
stateOrProvinceName = optional
|
||||||
|
localityName = optional
|
||||||
|
organizationName = optional
|
||||||
|
organizationalUnitName = optional
|
||||||
|
commonName = supplied
|
||||||
|
emailAddress = optional
|
||||||
|
|
||||||
|
####################################################################
|
||||||
|
[ req ]
|
||||||
|
default_bits = 2048
|
||||||
|
default_keyfile = privkey.pem
|
||||||
|
distinguished_name = req_distinguished_name
|
||||||
|
attributes = req_attributes
|
||||||
|
x509_extensions = v3_ca # The extentions to add to the self signed cert
|
||||||
|
|
||||||
|
# Passwords for private keys if not present they will be prompted for
|
||||||
|
# input_password = secret
|
||||||
|
# output_password = secret
|
||||||
|
|
||||||
|
# This sets a mask for permitted string types. There are several options.
|
||||||
|
# default: PrintableString, T61String, BMPString.
|
||||||
|
# pkix : PrintableString, BMPString (PKIX recommendation before 2004)
|
||||||
|
# utf8only: only UTF8Strings (PKIX recommendation after 2004).
|
||||||
|
# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
|
||||||
|
# MASK:XXXX a literal mask value.
|
||||||
|
# WARNING: ancient versions of Netscape crash on BMPStrings or UTF8Strings.
|
||||||
|
string_mask = utf8only
|
||||||
|
|
||||||
|
# req_extensions = v3_req # The extensions to add to a certificate request
|
||||||
|
|
||||||
|
[ req_distinguished_name ]
|
||||||
|
countryName = Country Name (2 letter code)
|
||||||
|
countryName_default = FR
|
||||||
|
countryName_min = 2
|
||||||
|
countryName_max = 2
|
||||||
|
|
||||||
|
stateOrProvinceName = State or Province Name (full name)
|
||||||
|
stateOrProvinceName_default = France
|
||||||
|
|
||||||
|
localityName = Locality Name (eg, city)
|
||||||
|
localityName_default = Paris
|
||||||
|
|
||||||
|
0.organizationName = Organization Name (eg, company)
|
||||||
|
0.organizationName_default = Epita
|
||||||
|
|
||||||
|
# we can do this but it is not needed normally :-)
|
||||||
|
#1.organizationName = Second Organization Name (eg, company)
|
||||||
|
#1.organizationName_default = World Wide Web Pty Ltd
|
||||||
|
|
||||||
|
organizationalUnitName = Organizational Unit Name (eg, section)
|
||||||
|
organizationalUnitName_default = SRS
|
||||||
|
|
||||||
|
commonName = Common Name (e.g. server FQDN or YOUR name)
|
||||||
|
commonName_default = Acier#COMMONNAME
|
||||||
|
commonName_max = 64
|
||||||
|
|
||||||
|
emailAddress = Email Address
|
||||||
|
emailAddress_max = 64
|
||||||
|
emailAddress_default = root@srs.epita.fr
|
||||||
|
|
||||||
|
# SET-ex3 = SET extension number 3
|
||||||
|
|
||||||
|
[ req_attributes ]
|
||||||
|
challengePassword = A challenge password
|
||||||
|
challengePassword_min = 4
|
||||||
|
challengePassword_max = 20
|
||||||
|
|
||||||
|
unstructuredName = An optional company name
|
||||||
|
|
||||||
|
[CORE_CA]
|
||||||
|
nsComment = "FIC CA"
|
||||||
|
basicConstraints = critical,CA:TRUE,pathlen:1
|
||||||
|
subjectKeyIdentifier = hash
|
||||||
|
authorityKeyIdentifier = keyid,issuer:always
|
||||||
|
issuerAltName = issuer:copy
|
||||||
|
keyUsage = keyCertSign, cRLSign
|
||||||
|
nsCertType = sslCA
|
||||||
|
subjectKeyIdentifier=hash
|
||||||
|
authorityKeyIdentifier=keyid:always,issuer
|
||||||
|
|
||||||
|
[SERVER_SSL]
|
||||||
|
nsComment = "FIC Server"
|
||||||
|
subjectKeyIdentifier = hash
|
||||||
|
authorityKeyIdentifier = keyid,issuer:always
|
||||||
|
issuerAltName = issuer:copy
|
||||||
|
basicConstraints = critical,CA:FALSE
|
||||||
|
keyUsage = digitalSignature, keyEncipherment
|
||||||
|
nsCertType = server
|
||||||
|
extendedKeyUsage = serverAuth
|
||||||
|
subjectKeyIdentifier=hash
|
||||||
|
authorityKeyIdentifier=keyid:always,issuer
|
||||||
|
|
||||||
|
[CLIENT_SSL]
|
||||||
|
nsComment = "FIC Client"
|
||||||
|
subjectKeyIdentifier = hash
|
||||||
|
authorityKeyIdentifier = keyid,issuer:always
|
||||||
|
issuerAltName = issuer:copy
|
||||||
|
basicConstraints = critical,CA:FALSE
|
||||||
|
keyUsage = digitalSignature, nonRepudiation
|
||||||
|
nsCertType = client
|
||||||
|
extendedKeyUsage = clientAuth
|
||||||
|
subjectKeyIdentifier=hash
|
||||||
|
authorityKeyIdentifier=keyid:always,issuer
|
36
libfic/certificate.go
Normal file
36
libfic/certificate.go
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
package fic
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os/exec"
|
||||||
|
)
|
||||||
|
|
||||||
|
func GenerateCA() string {
|
||||||
|
// Call the script and return its standard and error output
|
||||||
|
cmd := exec.Command("./CA.sh", "-newca")
|
||||||
|
|
||||||
|
if output, err := cmd.CombinedOutput(); err != nil {
|
||||||
|
return string(output) + err.Error()
|
||||||
|
} else {
|
||||||
|
return string(output)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Team) GenerateCert() string {
|
||||||
|
cmd := exec.Command("./CA.sh", "-newclient", t.Name)
|
||||||
|
|
||||||
|
if output, err := cmd.CombinedOutput(); err != nil {
|
||||||
|
return string(output) + err.Error()
|
||||||
|
} else {
|
||||||
|
return string(output)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Team) RevokeCert() string {
|
||||||
|
cmd := exec.Command("./CA.sh", "-revoke", t.Name)
|
||||||
|
|
||||||
|
if output, err := cmd.CombinedOutput(); err != nil {
|
||||||
|
return string(output) + err.Error()
|
||||||
|
} else {
|
||||||
|
return string(output)
|
||||||
|
}
|
||||||
|
}
|
Reference in a new issue