示例#1
0
func decryptHandler(w http.ResponseWriter, r *http.Request) {
	r.ParseForm()

	Metrics.Requests.Add(1)

	otp := r.FormValue("otp")

	if otp == "" {
		Metrics.Errors.Add(1)
		glog.Info("ERR No OTP provided")
		http.Error(w, "ERR No OTP provided", http.StatusOK)
		return
	}

	if len(otp) < 32 || len(otp) > 48 || !yubikey.ModHexP([]byte(otp)) {
		Metrics.Errors.Add(1)
		glog.Info("ERR Invalid OTP format: ", otp)
		http.Error(w, "ERR Invalid OTP format", http.StatusOK)
		return
	}

	pubid, yotp, err := yubikey.ParseOTPString(otp)

	stmt, err := KeysDB.Prepare("SELECT aeskey, internalname FROM yubikeys WHERE publicname = ? AND active = 1")
	if err != nil {
		Metrics.Errors.Add(1)
		glog.Error("ERR DB error during Prepare(): ", err)
		http.Error(w, "ERR Database error", http.StatusOK)
		return
	}
	defer stmt.Close()
	var aeskeyHex string
	var name string
	err = stmt.QueryRow(string(pubid)).Scan(&aeskeyHex, &name)
	if err != nil {
		Metrics.Errors.Add(1)
		if err == sql.ErrNoRows {
			glog.Info("ERR Unknown yubikey: ", string(pubid))
			http.Error(w, "ERR Unknown yubikey", http.StatusOK)
		} else {
			glog.Error("ERR DB error during SELECT: ", err)
			http.Error(w, "ERR Database error", http.StatusOK)
		}
		return
	}

	var aesKey yubikey.Key

	hex.Decode(aesKey[:], []byte(aeskeyHex)) // error ignored, we trust the database

	token, err := yotp.Parse(aesKey)
	if err != nil {
		Metrics.Errors.Add(1)
		glog.Info("ERR Corrupt OTP (Parse failed): ", otp)
		http.Error(w, "ERR Corrupt OTP", http.StatusOK)
		return
	}

	nameBytes, _ /* err */ := hex.DecodeString(name) // error ignored, we trust the database

	if !bytes.Equal(nameBytes, token.Uid[:]) {
		Metrics.Errors.Add(1)
		glog.Warning("ERR Corrupt OTP (UID mismatch): ", otp)
		http.Error(w, "ERR Corrupt OTP", http.StatusOK)
		return
	}

	response := fmt.Sprintf("OK counter=%04x low=%04x high=%02x use=%02x", token.Ctr, token.Tstpl, token.Tstph, token.Use)

	glog.Info(response)
	fmt.Fprintf(w, response)
}
示例#2
0
func verifyHandler(w http.ResponseWriter, r *http.Request) {

	Metrics.Requests.Add(1)

	r.ParseForm()

	clientIDstr := r.FormValue("id")
	otp := r.FormValue("otp")
	nonce := r.FormValue("nonce")

	if clientIDstr == "" {
		Metrics.BadRequests.Add(1)
		glog.Info("ClientID is missing")
		writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: MISSING_PARAMETER}, nil)
	}

	var clientID uint64
	var err error
	if clientID, err = strconv.ParseUint(clientIDstr, 10, 64); err != nil {
		Metrics.BadRequests.Add(1)
		glog.Info("ClientID must be an integer: ", clientIDstr)
		writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: MISSING_PARAMETER}, nil)
		return
	}

	if otp == "" {
		Metrics.BadRequests.Add(1)
		glog.Info("OTP is missing")
		writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: MISSING_PARAMETER}, nil)
		return
	}

	// FIXME: perform dvorak conversion?
	if len(otp) < 32 || len(otp) > 48 || !yubikey.ModHexP([]byte(otp)) {
		Metrics.BadRequests.Add(1)
		glog.Info("Invalid OTP: ", otp)
		writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: BAD_OTP}, nil)
		return
	}

	if nonce == "" {
		Metrics.BadRequests.Add(1)
		glog.Info("Nonce is missing")
		writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: MISSING_PARAMETER}, nil)
	}

	if !nonceRegex.MatchString(nonce) {
		Metrics.BadRequests.Add(1)
		glog.Info("Nonce is provided but not correct: ", nonce)
		writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: MISSING_PARAMETER}, nil)
		return
	}

	// FIXME: check timeout
	// FIXME: check sl

	// Val X parses validation request, retrieves the client key for the client id from local database and checks the request signature.
	var client yubidb.Client
	if err := client.Load(YubiDB, int(clientID)); err != nil {
		if err == sql.ErrNoRows {
			Metrics.BadRequests.Add(1)
			glog.Info("Invalid client ID: ", clientID)
			writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: NO_SUCH_CLIENT}, nil)
		} else {
			Metrics.Errors.Add(1)
			glog.Errorf("DB error loading clientID=%d: %s", clientID, err)
			writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: BACKEND_ERROR}, nil)
		}
		return
	}

	form := r.Form

	keyBytes, _ := base64.StdEncoding.DecodeString(client.Secret)

	// if they provided a hash, it has to verify
	if len(r.FormValue("h")) > 0 && !isValidRequestSignature(form, keyBytes) {
		Metrics.BadRequests.Add(1)
		glog.Info("Request signature failed")
		writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: BAD_SIGNATURE}, keyBytes)
		return
	}

	// Val X decrypts the OTP using a KSM and reads out the modified/counters from the internal database -- if the YubiKey identity doesn't exist in the database, add it with counter/use/high/low=-1.
	ksmClient := ksmclient.NewClient(ksmEndpoint)

	ksmResponse, err := ksmClient.Decrypt(otp)
	if err != nil {
		// We don't differentiate between a problem with the OTP (unknown,
		// corrupt) and a problem with the KSM itself (down, db error)
		// The PHP version assumes the KSM is fine and the OTP is broken, so that's what we do too.
		Metrics.Errors.Add(1)
		glog.Error("Error talking to KSM: ", err)
		writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: BAD_OTP}, keyBytes)
		return
	}

	publicNameLen := len(otp) - 32
	publicName := otp[:publicNameLen]

	var ykey yubidb.Yubikey

	err = ykey.Load(YubiDB, publicName)
	if err == sql.ErrNoRows {
		glog.Info("Unknown Yubikey '", publicName, "' -- creating")
		ykey.Active = true
		ykey.PublicName = publicName
		ykey.Counter = -1
		ykey.Use = -1
		ykey.Low = -1
		ykey.High = -1
		ykey.Nonce = nonce
		if err := ykey.Insert(YubiDB); err != nil {
			Metrics.Errors.Add(1)
			glog.Errorf("DB error inserting yubikey='%s': %s", ykey.PublicName, err)
			writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: BACKEND_ERROR}, keyBytes)
			return
		}

	} else if err != nil {
		Metrics.Errors.Add(1)
		glog.Errorf("DB error loading yubikey='%s': %s", publicName, err)
		writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: BACKEND_ERROR}, keyBytes)
		return
	}

	glog.Infof("Loaded yubikey=%#v", ykey)

	if !ykey.Active {
		// actually 'deactivated', but don't let the user know
		Metrics.Deactivated.Add(1)
		glog.Info("Yubikey '", publicName, "' not active, rejecting")
		writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: BAD_OTP}, keyBytes)
		return
	}

	// Val X checks the OTP/Nonce against local database, and replies with REPLAYED_REQUEST if local information is identical.
	if int(ksmResponse.Counter) == ykey.Counter && int(ksmResponse.Use) == ykey.Use && nonce == ykey.Nonce {
		Metrics.Replayed.Add(1)
		glog.Warning("Replayed request")
		writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: REPLAYED_REQUEST}, keyBytes)
		return
	}

	// Val X checks the OTP counters against local counters, and rejects OTP as replayed if local counters are higher than or equal to OTP counters.
	if int(ksmResponse.Counter) < ykey.Counter || int(ksmResponse.Counter) == ykey.Counter && int(ksmResponse.Use) <= ykey.Use {
		Metrics.Replayed.Add(1)
		glog.Warning("Replayed OTP: local counters higher") // FIXME: log actual counter values?
		writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: REPLAYED_OTP}, keyBytes)
		return
	}

	// Val X updates the internal database with counters/nonce from request.
	ykey.Counter = int(ksmResponse.Counter)
	ykey.Use = int(ksmResponse.Use)
	ykey.Low = int(ksmResponse.TstampLow)
	ykey.High = int(ksmResponse.TstampHigh)
	ykey.Nonce = nonce

	if err := ykey.UpdateCounters(YubiDB); err != nil {
		Metrics.Errors.Add(1)
		glog.Error("DB error updating counters: ", err)
		writeResponse(w, &VerifyResponse{OTP: otp, Nonce: nonce, Status: BACKEND_ERROR}, keyBytes)
		return
	}

	/* FIXME: sync() protocol not handled not handled
	 * Val X queues a sync request in a sync queue for each validation server in the validation server pool (manually configured).
	 * Val X requests the queued requests (otp, modified, nonce, yk_identity, yk_counter, yk_use, yk_high, yk_low) to be sent out, by sending parallel sync requests to all other validation servers.
	 * Each validation server receiving a sync request updates its own internal database with received information to use the highest counter.
	 * Each remote server responds with a sync response (modified, nonce, yk_identity, yk_counter, yk_use, yk_high, yk_low) using data from its internal database.
	 * Val X waits for a sync response (up until timeout, or when sufficient number of sync responses indicating valid OTP and no sync response indicating invalid OTP) from the other validation servers to which it sent a sync request. For each response that arrives the corresponding entry in the sync queue is removed and the following is checked
	 * If the sync response counters have higher values than val X internal database, the internal database is updated with new information, AND
	 * If the sync response counter have higher values as val X internal database the response is considered to mark the OTP as invalid, AND
	 * If the sync response have equal counter values and nonce as val X internal database the response is considered to mark the OTP as valid, AND
	 * If the sync response have equal counter values and different nonce as val X internal database the response is considered to mark the OTP as invalid, AND
	 * If the sync response counter have smaller values than val X had in its internal database before the validation attempt the server logs a warning, and the response is considered to mark the OTP as valid.
	 */

	//   Val X construct validation response. Validation is successful if the Verification Algorithm below is successful.
	response := &VerifyResponse{
		OTP:    otp,
		Nonce:  nonce,
		Status: OK,
	}

	if form.Get("timestamp") == "1" {
		response.SessionCounter = uint(ksmResponse.Counter)
		response.SessionUse = uint(ksmResponse.Use)
		response.Timestamp = uint(ksmResponse.TstampHigh)<<16 + uint(ksmResponse.TstampLow)
	}

	writeResponse(w, response, keyBytes)

	/*
	 * Val X marks the remaining entries in the sync queue as marked with timestamp=NULL.
	 */
}