| 
									
										
										
										
											2023-03-12 16:00:57 +01:00
										 |  |  | // GoToSocial | 
					
						
							|  |  |  | // Copyright (C) GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | // SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | // GNU Affero General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | package federation | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	"crypto/rsa" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	"encoding/json" | 
					
						
							|  |  |  | 	"errors" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2024-02-23 15:24:40 +00:00
										 |  |  | 	"io" | 
					
						
							| 
									
										
										
										
											2023-03-06 09:38:43 +00:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	"net/url" | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-25 15:15:36 +02:00
										 |  |  | 	"code.superseriousbusiness.org/activity/streams" | 
					
						
							|  |  |  | 	typepublickey "code.superseriousbusiness.org/activity/streams/impl/w3idsecurityv1/type_publickey" | 
					
						
							| 
									
										
										
										
											2025-04-26 15:34:10 +02:00
										 |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/ap" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/config" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/db" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/gtscontext" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/gtserror" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/gtsmodel" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/log" | 
					
						
							| 
									
										
										
										
											2025-04-25 15:15:36 +02:00
										 |  |  | 	"code.superseriousbusiness.org/httpsig" | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	"codeberg.org/gruf/go-kv" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | var ( | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	errUnsigned = errors.New("http request wasn't signed or http signature was invalid") | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | // PubKeyAuth models authorization information for a remote | 
					
						
							|  |  |  | // Actor making a signed HTTP request to this GtS instance | 
					
						
							|  |  |  | // using a public key. | 
					
						
							|  |  |  | type PubKeyAuth struct { | 
					
						
							|  |  |  | 	// CachedPubKey is the public key found in the db | 
					
						
							|  |  |  | 	// for the Actor whose request we're now authenticating. | 
					
						
							|  |  |  | 	// Will be set only in cases where we had the Owner | 
					
						
							|  |  |  | 	// of the key stored in the database already. | 
					
						
							|  |  |  | 	CachedPubKey *rsa.PublicKey | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// FetchedPubKey is an up-to-date public key fetched | 
					
						
							|  |  |  | 	// from the remote instance. Will be set in cases | 
					
						
							|  |  |  | 	// where EITHER we hadn't seen the Actor before whose | 
					
						
							|  |  |  | 	// request we're now authenticating, OR a CachedPubKey | 
					
						
							|  |  |  | 	// was found in our database, but was expired. | 
					
						
							|  |  |  | 	FetchedPubKey *rsa.PublicKey | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// OwnerURI is the ActivityPub id of the owner of | 
					
						
							|  |  |  | 	// the public key used to sign the request we're | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	// now authenticating. This will always be set. | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 	OwnerURI *url.URL | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	// Owner is the account corresponding to | 
					
						
							|  |  |  | 	// OwnerURI. This will always be set UNLESS | 
					
						
							|  |  |  | 	// the PubKeyAuth.Handshaking field is set.. | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 	Owner *gtsmodel.Account | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Handshaking indicates that uncached owner | 
					
						
							|  |  |  | 	// account was NOT dereferenced due to an ongoing | 
					
						
							|  |  |  | 	// handshake with another instance. | 
					
						
							|  |  |  | 	Handshaking bool | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | // AuthenticateFederatedRequest authenticates any kind of incoming federated | 
					
						
							|  |  |  | // request from a remote server. This includes things like GET requests for | 
					
						
							|  |  |  | // dereferencing our users or statuses etc, and POST requests for delivering | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | // new Activities. The function returns details of the public key(s) used to | 
					
						
							|  |  |  | // authenticate the requesting http signature. | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | // | 
					
						
							|  |  |  | // 'Authenticate' in this case is defined as making sure that the http request | 
					
						
							|  |  |  | // is actually signed by whoever claims to have signed it, by fetching the public | 
					
						
							|  |  |  | // key from the signature and checking it against the remote public key. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The provided username will be used to generate a transport for making remote | 
					
						
							|  |  |  | // requests/derefencing the public key ID of the request signature. Ideally you | 
					
						
							|  |  |  | // should pass in the username of the user *being requested*, so that the remote | 
					
						
							|  |  |  | // server can decide how to handle the request based on who's making it. Ie., if | 
					
						
							|  |  |  | // the request on this server is for https://example.org/users/some_username then | 
					
						
							|  |  |  | // you should pass in the username 'some_username'. The remote server will then | 
					
						
							|  |  |  | // know that this is the user making the dereferencing request, and they can decide | 
					
						
							|  |  |  | // to allow or deny the request depending on their settings. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | // This function will handle dereferencing and storage of any new remote accounts | 
					
						
							|  |  |  | // and / or instances. The returned PubKeyAuth{}.Owner account will ONLY ever be | 
					
						
							|  |  |  | // nil in the case that there is an ongoing handshake involving this account. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | // Note that it is also valid to pass in an empty string here, in which case the | 
					
						
							|  |  |  | // keys of the instance account will be used. | 
					
						
							| 
									
										
										
										
											2023-10-23 10:58:13 +01:00
										 |  |  | func (f *Federator) AuthenticateFederatedRequest(ctx context.Context, requestedUsername string) (*PubKeyAuth, gtserror.WithCode) { | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	// Thanks to the signature check middleware, | 
					
						
							|  |  |  | 	// we should already have an http signature | 
					
						
							|  |  |  | 	// verifier set on the context. If we don't, | 
					
						
							|  |  |  | 	// this is an unsigned request. | 
					
						
							|  |  |  | 	verifier := gtscontext.HTTPSignatureVerifier(ctx) | 
					
						
							|  |  |  | 	if verifier == nil { | 
					
						
							|  |  |  | 		err := gtserror.Newf("%w", errUnsigned) | 
					
						
							|  |  |  | 		errWithCode := gtserror.NewErrorUnauthorized(err, errUnsigned.Error(), "(verifier)") | 
					
						
							|  |  |  | 		return nil, errWithCode | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	// We should have the signature itself set too. | 
					
						
							|  |  |  | 	signature := gtscontext.HTTPSignature(ctx) | 
					
						
							|  |  |  | 	if signature == "" { | 
					
						
							|  |  |  | 		err := gtserror.Newf("%w", errUnsigned) | 
					
						
							|  |  |  | 		errWithCode := gtserror.NewErrorUnauthorized(err, errUnsigned.Error(), "(signature)") | 
					
						
							|  |  |  | 		return nil, errWithCode | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	// And finally the public key ID URI. | 
					
						
							|  |  |  | 	pubKeyID := gtscontext.HTTPSignaturePubKeyID(ctx) | 
					
						
							|  |  |  | 	if pubKeyID == nil { | 
					
						
							|  |  |  | 		err := gtserror.Newf("%w", errUnsigned) | 
					
						
							|  |  |  | 		errWithCode := gtserror.NewErrorUnauthorized(err, errUnsigned.Error(), "(pubKeyID)") | 
					
						
							|  |  |  | 		return nil, errWithCode | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	// At this point we know the request was signed, | 
					
						
							|  |  |  | 	// so now we need to validate the signature. | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	var ( | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 		pubKeyIDStr = pubKeyID.String() | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 		isLocal     = (pubKeyID.Host == config.GetHost()) | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 		pubKeyAuth  *PubKeyAuth | 
					
						
							|  |  |  | 		errWithCode gtserror.WithCode | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	l := log. | 
					
						
							|  |  |  | 		WithContext(ctx). | 
					
						
							|  |  |  | 		WithFields(kv.Fields{ | 
					
						
							|  |  |  | 			{"requestedUsername", requestedUsername}, | 
					
						
							|  |  |  | 			{"pubKeyID", pubKeyIDStr}, | 
					
						
							|  |  |  | 		}...) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	if isLocal { | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 		l.Trace("public key is local, no dereference needed") | 
					
						
							|  |  |  | 		pubKeyAuth, errWithCode = f.derefPubKeyDBOnly(ctx, pubKeyIDStr) | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 		l.Trace("public key is remote, checking if we need to dereference") | 
					
						
							|  |  |  | 		pubKeyAuth, errWithCode = f.derefPubKey(ctx, requestedUsername, pubKeyIDStr, pubKeyID) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	if errWithCode != nil { | 
					
						
							| 
									
										
										
										
											2022-04-26 18:10:11 +02:00
										 |  |  | 		return nil, errWithCode | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	if isLocal && pubKeyAuth == nil { | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 		// We signed this request, apparently, but | 
					
						
							|  |  |  | 		// local lookup didn't find anything. This | 
					
						
							|  |  |  | 		// is an almost impossible error condition! | 
					
						
							|  |  |  | 		err := gtserror.Newf("local public key %s could not be found; "+ | 
					
						
							|  |  |  | 			"has the account been manually removed from the db?", pubKeyIDStr) | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2021-09-16 11:35:09 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	// Attempt to verify auth with both fetched and cached keys. | 
					
						
							|  |  |  | 	if !verifyAuth(&l, verifier, pubKeyAuth.CachedPubKey) && | 
					
						
							|  |  |  | 		!verifyAuth(&l, verifier, pubKeyAuth.FetchedPubKey) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		const format = "authentication NOT PASSED for public key %s; tried algorithms %+v; signature value was '%s'" | 
					
						
							|  |  |  | 		text := fmt.Sprintf(format, pubKeyIDStr, signingAlgorithms, signature) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorUnauthorized(errors.New(text), text) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if pubKeyAuth.Owner == nil { | 
					
						
							|  |  |  | 		// Ensure we have instance stored in | 
					
						
							|  |  |  | 		// database for the account at URI. | 
					
						
							|  |  |  | 		err := f.fetchAccountInstance(ctx, | 
					
						
							|  |  |  | 			requestedUsername, | 
					
						
							|  |  |  | 			pubKeyAuth.OwnerURI, | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 		// If we're currently handshaking with another instance, return | 
					
						
							|  |  |  | 		// without derefing the owner, the only possible time we do this. | 
					
						
							|  |  |  | 		// This prevents deadlocks when GTS instances mutually deref. | 
					
						
							|  |  |  | 		if f.Handshaking(requestedUsername, pubKeyAuth.OwnerURI) { | 
					
						
							|  |  |  | 			log.Warnf(ctx, "network race during %s handshake", pubKeyAuth.OwnerURI) | 
					
						
							|  |  |  | 			pubKeyAuth.Handshaking = true | 
					
						
							|  |  |  | 			return pubKeyAuth, nil | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 		// Dereference the account located at owner URI. | 
					
						
							| 
									
										
										
										
											2025-04-06 14:39:40 +02:00
										 |  |  | 		// Use exact URI match, not URL match. | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 		pubKeyAuth.Owner, _, err = f.GetAccountByURI(ctx, | 
					
						
							|  |  |  | 			requestedUsername, | 
					
						
							|  |  |  | 			pubKeyAuth.OwnerURI, | 
					
						
							| 
									
										
										
										
											2025-04-06 14:39:40 +02:00
										 |  |  | 			false, | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 		) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			if gtserror.StatusCode(err) == http.StatusGone { | 
					
						
							|  |  |  | 				// This can happen here instead of the pubkey 'gone' | 
					
						
							|  |  |  | 				// checks due to: the server sending account deletion | 
					
						
							|  |  |  | 				// notifications out, we start processing, the request above | 
					
						
							|  |  |  | 				// succeeds, and *then* the profile is removed and starts | 
					
						
							|  |  |  | 				// returning 410 Gone, at which point _this_ request fails. | 
					
						
							|  |  |  | 				return nil, gtserror.NewErrorGone(err) | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 			err := gtserror.Newf("error dereferencing account %s: %w", pubKeyAuth.OwnerURI, err) | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-02-06 12:59:37 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Catch a possible (but very rare) race condition where | 
					
						
							|  |  |  | 		// we've fetched a key, then fetched the Actor who owns the | 
					
						
							|  |  |  | 		// key, but the Key of the Actor has changed in the meantime. | 
					
						
							|  |  |  | 		if !pubKeyAuth.Owner.PublicKey.Equal(pubKeyAuth.FetchedPubKey) { | 
					
						
							|  |  |  | 			err := gtserror.Newf( | 
					
						
							|  |  |  | 				"key mismatch: fetched key %s does not match pubkey of fetched Actor %s", | 
					
						
							|  |  |  | 				pubKeyID, pubKeyAuth.Owner.URI, | 
					
						
							|  |  |  | 			) | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorUnauthorized(err) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	if !pubKeyAuth.Owner.SuspendedAt.IsZero() { | 
					
						
							|  |  |  | 		const text = "requesting account suspended" | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorForbidden(errors.New(text)) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	return pubKeyAuth, nil | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | // derefPubKeyDBOnly tries to dereference the given | 
					
						
							|  |  |  | // pubKey using only entries already in the database. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // In case of a db or URL error, will return the error. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // In case an entry for the pubKey owner just doesn't | 
					
						
							|  |  |  | // exist in the db (yet), will return nil, nil. | 
					
						
							| 
									
										
										
										
											2023-10-23 10:58:13 +01:00
										 |  |  | func (f *Federator) derefPubKeyDBOnly( | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	pubKeyIDStr string, | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | ) ( | 
					
						
							|  |  |  | 	*PubKeyAuth, | 
					
						
							|  |  |  | 	gtserror.WithCode, | 
					
						
							|  |  |  | ) { | 
					
						
							|  |  |  | 	// Look for pubkey ID owner in the database. | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 	owner, err := f.db.GetAccountByPubkeyID(ctx, pubKeyIDStr) | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	if err != nil && !errors.Is(err, db.ErrNoEntries) { | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 		err = gtserror.Newf("db error getting account with pubKeyID %s: %w", pubKeyIDStr, err) | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2021-09-16 11:35:09 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	if owner == nil { | 
					
						
							|  |  |  | 		// We don't have this | 
					
						
							|  |  |  | 		// account stored (yet). | 
					
						
							|  |  |  | 		return nil, nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Parse owner account URI as URL obj. | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 	ownerURI, err := url.Parse(owner.URI) | 
					
						
							| 
									
										
										
										
											2021-06-27 16:52:18 +02:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 		err := gtserror.Newf("error parsing account uri with pubKeyID %s: %w", pubKeyIDStr, err) | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2021-06-27 16:52:18 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 	return &PubKeyAuth{ | 
					
						
							|  |  |  | 		CachedPubKey: owner.PublicKey, | 
					
						
							|  |  |  | 		OwnerURI:     ownerURI, | 
					
						
							|  |  |  | 		Owner:        owner, | 
					
						
							|  |  |  | 	}, nil | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-09-02 10:58:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | // derefPubKey tries to dereference the given public key by first | 
					
						
							|  |  |  | // checking in the database, and then (if no entry found, or entry | 
					
						
							|  |  |  | // found but pubKey expired) calling the remote pub key URI and | 
					
						
							|  |  |  | // extracting the key. | 
					
						
							| 
									
										
										
										
											2023-10-23 10:58:13 +01:00
										 |  |  | func (f *Federator) derefPubKey( | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	requestedUsername string, | 
					
						
							|  |  |  | 	pubKeyIDStr string, | 
					
						
							|  |  |  | 	pubKeyID *url.URL, | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | ) ( | 
					
						
							|  |  |  | 	*PubKeyAuth, | 
					
						
							|  |  |  | 	gtserror.WithCode, | 
					
						
							|  |  |  | ) { | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	l := log. | 
					
						
							|  |  |  | 		WithContext(ctx). | 
					
						
							|  |  |  | 		WithFields(kv.Fields{ | 
					
						
							|  |  |  | 			{"requestedUsername", requestedUsername}, | 
					
						
							|  |  |  | 			{"pubKeyID", pubKeyIDStr}, | 
					
						
							|  |  |  | 		}...) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Try a database only deref first. We may already | 
					
						
							|  |  |  | 	// have the requesting account cached locally. | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 	pubKeyAuth, errWithCode := f.derefPubKeyDBOnly(ctx, pubKeyIDStr) | 
					
						
							|  |  |  | 	if errWithCode != nil { | 
					
						
							|  |  |  | 		return nil, errWithCode | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-09-02 10:58:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 	var ( | 
					
						
							|  |  |  | 		// Just haven't seen this | 
					
						
							|  |  |  | 		// Actor + their pubkey yet. | 
					
						
							|  |  |  | 		uncached = (pubKeyAuth == nil) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Have seen this Actor + their | 
					
						
							|  |  |  | 		// pubkey but latter is now expired. | 
					
						
							|  |  |  | 		expired = (!uncached && pubKeyAuth.Owner.PubKeyExpired()) | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch { | 
					
						
							|  |  |  | 	case uncached: | 
					
						
							|  |  |  | 		l.Trace("public key was not cached, trying dereference of public key") | 
					
						
							|  |  |  | 	case !expired: | 
					
						
							|  |  |  | 		l.Trace("public key cached and up to date, no dereference needed") | 
					
						
							|  |  |  | 		return pubKeyAuth, nil | 
					
						
							|  |  |  | 	case expired: | 
					
						
							|  |  |  | 		// This is fairly rare and it may be helpful for | 
					
						
							|  |  |  | 		// admins to see what's going on, so log at info. | 
					
						
							|  |  |  | 		l.Infof( | 
					
						
							|  |  |  | 			"public key was cached, but expired at %s, trying dereference of new public key", | 
					
						
							|  |  |  | 			pubKeyAuth.Owner.PublicKeyExpiresAt, | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-09-02 10:58:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	// If we've tried to get this account before and we | 
					
						
							|  |  |  | 	// now have a tombstone for it (ie., it's been deleted | 
					
						
							|  |  |  | 	// from remote), don't try to dereference it again. | 
					
						
							|  |  |  | 	gone, err := f.CheckGone(ctx, pubKeyID) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 		err := gtserror.Newf("error checking for tombstone (%s): %w", pubKeyIDStr, err) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-09-02 10:58:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	if gone { | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 		err := gtserror.Newf("account with public key is gone (%s)", pubKeyIDStr) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorGone(err) | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-11-11 12:18:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 	// Make an http call to get the (refreshed) pubkey. | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	pubKeyBytes, errWithCode := f.callForPubKey(ctx, requestedUsername, pubKeyID) | 
					
						
							|  |  |  | 	if errWithCode != nil { | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 		return nil, errWithCode | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-11-11 12:18:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	// Extract the key and the owner from the response. | 
					
						
							|  |  |  | 	pubKey, pubKeyOwner, err := parsePubKeyBytes(ctx, pubKeyBytes, pubKeyID) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 		err := gtserror.Newf("error parsing public key (%s): %w", pubKeyID, err) | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 		return nil, gtserror.NewErrorUnauthorized(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !expired { | 
					
						
							|  |  |  | 		// PubKeyResponse was nil before because | 
					
						
							|  |  |  | 		// we had nothing cached; return the key | 
					
						
							|  |  |  | 		// we just fetched, and nothing else. | 
					
						
							|  |  |  | 		return &PubKeyAuth{ | 
					
						
							|  |  |  | 			FetchedPubKey: pubKey, | 
					
						
							|  |  |  | 			OwnerURI:      pubKeyOwner, | 
					
						
							|  |  |  | 		}, nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Add newly-fetched key to response. | 
					
						
							|  |  |  | 	pubKeyAuth.FetchedPubKey = pubKey | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// If key was expired, that means we already | 
					
						
							|  |  |  | 	// had an owner stored for it locally. Since | 
					
						
							|  |  |  | 	// we now successfully refreshed the pub key, | 
					
						
							|  |  |  | 	// we should update the account to reflect that. | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	owner := pubKeyAuth.Owner | 
					
						
							|  |  |  | 	owner.PublicKey = pubKeyAuth.FetchedPubKey | 
					
						
							|  |  |  | 	owner.PublicKeyExpiresAt = time.Time{} | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 	if err := f.db.UpdateAccount( | 
					
						
							|  |  |  | 		ctx, | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 		owner, | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 		"public_key", | 
					
						
							|  |  |  | 		"public_key_expires_at", | 
					
						
							|  |  |  | 	); err != nil { | 
					
						
							|  |  |  | 		err := gtserror.Newf("db error updating account with refreshed public key (%s): %w", pubKeyIDStr, err) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	l.Info("obtained new public key to replace expired; attempting auth with old / new") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-12 11:43:12 +02:00
										 |  |  | 	// Return both new and cached (now | 
					
						
							|  |  |  | 	// expired) keys, authentication | 
					
						
							|  |  |  | 	// will be attempted with both. | 
					
						
							|  |  |  | 	return pubKeyAuth, nil | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | // callForPubKey handles the nitty gritty of actually | 
					
						
							|  |  |  | // making a request for the given pubKeyID with a | 
					
						
							|  |  |  | // transport created on behalf of requestedUsername. | 
					
						
							| 
									
										
										
										
											2023-10-23 10:58:13 +01:00
										 |  |  | func (f *Federator) callForPubKey( | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	requestedUsername string, | 
					
						
							|  |  |  | 	pubKeyID *url.URL, | 
					
						
							|  |  |  | ) ([]byte, gtserror.WithCode) { | 
					
						
							|  |  |  | 	// Use a transport to dereference the remote. | 
					
						
							| 
									
										
										
										
											2025-01-28 20:22:23 +00:00
										 |  |  | 	trans, err := f.transport.NewTransportForUsername( | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 		// We're on a hot path: don't retry if req fails. | 
					
						
							|  |  |  | 		gtscontext.SetFastFail(ctx), | 
					
						
							|  |  |  | 		requestedUsername, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		err = gtserror.Newf("error creating transport for %s: %w", requestedUsername, err) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	// The actual http call to the remote server is | 
					
						
							|  |  |  | 	// made right here by the Dereference function. | 
					
						
							| 
									
										
										
										
											2024-02-23 15:24:40 +00:00
										 |  |  | 	rsp, err := trans.Dereference(ctx, pubKeyID) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	if err == nil { | 
					
						
							| 
									
										
										
										
											2024-02-23 15:24:40 +00:00
										 |  |  | 		// Read the response body data. | 
					
						
							|  |  |  | 		b, err := io.ReadAll(rsp.Body) | 
					
						
							|  |  |  | 		_ = rsp.Body.Close() // done | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			err := gtserror.Newf("error reading pubkey: %w", err) | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return b, nil | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	if gtserror.StatusCode(err) == http.StatusGone { | 
					
						
							|  |  |  | 		// 410 indicates remote public key no longer exists | 
					
						
							|  |  |  | 		// (account deleted, moved, etc). Add a tombstone | 
					
						
							|  |  |  | 		// to our database so that we can avoid trying to | 
					
						
							|  |  |  | 		// dereference it in future. | 
					
						
							|  |  |  | 		if err := f.HandleGone(ctx, pubKeyID); err != nil { | 
					
						
							|  |  |  | 			err := gtserror.Newf("error marking public key %s as gone: %w", pubKeyID, err) | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2021-05-21 15:48:26 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 		err := gtserror.Newf("account with public key %s is gone", pubKeyID) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorGone(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-05-21 15:48:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 	// Fall back to generic error. | 
					
						
							|  |  |  | 	err = gtserror.Newf("error dereferencing public key %s: %w", pubKeyID, err) | 
					
						
							|  |  |  | 	return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | // fetchAccountInstance ensures that an instance model exists in | 
					
						
							|  |  |  | // the database for the given account URI, deref'ing if necessary. | 
					
						
							|  |  |  | func (f *Federator) fetchAccountInstance( | 
					
						
							|  |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	requestedUsername string, | 
					
						
							|  |  |  | 	accountURI *url.URL, | 
					
						
							|  |  |  | ) error { | 
					
						
							|  |  |  | 	// Look for an existing entry for instance in database. | 
					
						
							|  |  |  | 	instance, err := f.db.GetInstance(ctx, accountURI.Host) | 
					
						
							|  |  |  | 	if err != nil && !errors.Is(err, db.ErrNoEntries) { | 
					
						
							|  |  |  | 		return gtserror.Newf("error getting instance from database: %w", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if instance != nil { | 
					
						
							|  |  |  | 		// already fetched. | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// We don't have an entry for this | 
					
						
							|  |  |  | 	// instance yet; go dereference it. | 
					
						
							|  |  |  | 	instance, err = f.GetRemoteInstance( | 
					
						
							|  |  |  | 		gtscontext.SetFastFail(ctx), | 
					
						
							|  |  |  | 		requestedUsername, | 
					
						
							|  |  |  | 		&url.URL{ | 
					
						
							|  |  |  | 			Scheme: accountURI.Scheme, | 
					
						
							|  |  |  | 			Host:   accountURI.Host, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return gtserror.Newf("error dereferencing instance %s: %w", accountURI.Host, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Insert new instance into the datbase. | 
					
						
							|  |  |  | 	err = f.db.PutInstance(ctx, instance) | 
					
						
							|  |  |  | 	if err != nil && !errors.Is(err, db.ErrAlreadyExists) { | 
					
						
							|  |  |  | 		return gtserror.Newf("error inserting instance %s into database: %w", accountURI.Host, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | // parsePubKeyBytes extracts an rsa public key from the | 
					
						
							|  |  |  | // given pubKeyBytes by trying to parse the pubKeyBytes | 
					
						
							|  |  |  | // as an ActivityPub type. It will return the public key | 
					
						
							|  |  |  | // itself, and the URI of the public key owner. | 
					
						
							|  |  |  | func parsePubKeyBytes( | 
					
						
							|  |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	pubKeyBytes []byte, | 
					
						
							|  |  |  | 	pubKeyID *url.URL, | 
					
						
							|  |  |  | ) (*rsa.PublicKey, *url.URL, error) { | 
					
						
							|  |  |  | 	m := make(map[string]interface{}) | 
					
						
							|  |  |  | 	if err := json.Unmarshal(pubKeyBytes, &m); err != nil { | 
					
						
							|  |  |  | 		return nil, nil, err | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-08-10 13:32:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-02 12:30:10 +02:00
										 |  |  | 	var ( | 
					
						
							|  |  |  | 		pubKey   *rsa.PublicKey | 
					
						
							|  |  |  | 		ownerURI *url.URL | 
					
						
							|  |  |  | 	) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-02 12:30:10 +02:00
										 |  |  | 	if t, err := streams.ToType(ctx, m); err == nil { | 
					
						
							|  |  |  | 		// See if Actor with a PublicKey attached. | 
					
						
							|  |  |  | 		wpk, ok := t.(ap.WithPublicKey) | 
					
						
							|  |  |  | 		if !ok { | 
					
						
							|  |  |  | 			return nil, nil, gtserror.Newf( | 
					
						
							|  |  |  | 				"resource at %s with type %T did not contain recognizable public key", | 
					
						
							|  |  |  | 				pubKeyID, t, | 
					
						
							|  |  |  | 			) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-08-10 13:32:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-02 12:30:10 +02:00
										 |  |  | 		pubKey, _, ownerURI, err = ap.ExtractPubKeyFromActor(wpk) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return nil, nil, gtserror.Newf( | 
					
						
							|  |  |  | 				"error extracting public key from %T at %s: %w", | 
					
						
							|  |  |  | 				t, pubKeyID, err, | 
					
						
							|  |  |  | 			) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else if pk, err := typepublickey.DeserializePublicKey(m, nil); err == nil { | 
					
						
							|  |  |  | 		// Bare PublicKey. | 
					
						
							|  |  |  | 		pubKey, _, ownerURI, err = ap.ExtractPubKeyFromKey(pk) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return nil, nil, gtserror.Newf( | 
					
						
							|  |  |  | 				"error extracting public key at %s: %w", | 
					
						
							|  |  |  | 				pubKeyID, err, | 
					
						
							|  |  |  | 			) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		return nil, nil, gtserror.Newf( | 
					
						
							|  |  |  | 			"resource at %s did not contain recognizable public key", | 
					
						
							|  |  |  | 			pubKeyID, | 
					
						
							|  |  |  | 		) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-02 12:30:10 +02:00
										 |  |  | 	return pubKey, ownerURI, nil | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | var signingAlgorithms = []httpsig.Algorithm{ | 
					
						
							|  |  |  | 	httpsig.RSA_SHA256, // Prefer common RSA_SHA256. | 
					
						
							|  |  |  | 	httpsig.RSA_SHA512, // Fall back to less common RSA_SHA512. | 
					
						
							|  |  |  | 	httpsig.ED25519,    // Try ED25519 as a long shot. | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-31 15:15:28 +01:00
										 |  |  | // Cheeky type to wrap a signing option with a | 
					
						
							|  |  |  | // description of that option for logging purposes. | 
					
						
							|  |  |  | type signingOption struct { | 
					
						
							|  |  |  | 	desc   string                  // Description of this options set. | 
					
						
							|  |  |  | 	sigOpt httpsig.SignatureOption // The options themselves. | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var signingOptions = []signingOption{ | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		// Prefer include query params. | 
					
						
							|  |  |  | 		desc: "include query params", | 
					
						
							|  |  |  | 		sigOpt: httpsig.SignatureOption{ | 
					
						
							|  |  |  | 			ExcludeQueryStringFromPathPseudoHeader: false, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		// Fall back to exclude query params. | 
					
						
							|  |  |  | 		desc: "exclude query params", | 
					
						
							|  |  |  | 		sigOpt: httpsig.SignatureOption{ | 
					
						
							|  |  |  | 			ExcludeQueryStringFromPathPseudoHeader: true, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // verifyAuth verifies auth using generated verifier, | 
					
						
							|  |  |  | // according to pubkey, our supported signing algorithms, | 
					
						
							|  |  |  | // and signature options. The loops in the function are | 
					
						
							|  |  |  | // arranged in such a way that the most common combos are | 
					
						
							|  |  |  | // tried first, so that we can hopefully succeed quickly | 
					
						
							|  |  |  | // without wasting too many CPU cycles. | 
					
						
							|  |  |  | func verifyAuth( | 
					
						
							|  |  |  | 	l *log.Entry, | 
					
						
							|  |  |  | 	verifier httpsig.VerifierWithOptions, | 
					
						
							|  |  |  | 	pubKey *rsa.PublicKey, | 
					
						
							|  |  |  | ) bool { | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	if pubKey == nil { | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-31 15:15:28 +01:00
										 |  |  | 	// Loop through supported algorithms. | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	for _, algo := range signingAlgorithms { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-31 15:15:28 +01:00
										 |  |  | 		// Loop through signing options. | 
					
						
							|  |  |  | 		for _, opt := range signingOptions { | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-31 15:15:28 +01:00
										 |  |  | 			// Try to verify according to this pubkey, | 
					
						
							|  |  |  | 			// algo, and signing options combination. | 
					
						
							|  |  |  | 			err := verifier.VerifyWithOptions(pubKey, algo, opt.sigOpt) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				l.Tracef("authentication NOT PASSED with %s (%s): %v", algo, opt.desc, err) | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			l.Tracef("authenticated PASSED with %s (%s)", algo, opt.desc) | 
					
						
							|  |  |  | 			return true | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-11-21 10:35:30 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return false | 
					
						
							|  |  |  | } |