2023-03-12 15:00:57 +00: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 13:25:55 +01:00
|
|
|
|
|
|
|
package federation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-05-28 20:05:15 +01:00
|
|
|
"errors"
|
2023-04-06 12:19:55 +01:00
|
|
|
"fmt"
|
2021-05-08 13:25:55 +01:00
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
|
2023-08-11 14:17:36 +01:00
|
|
|
errorsv2 "codeberg.org/gruf/go-errors/v2"
|
2023-04-06 12:19:55 +01:00
|
|
|
"codeberg.org/gruf/go-kv"
|
2021-11-13 16:29:43 +00:00
|
|
|
"github.com/superseriousbusiness/activity/pub"
|
|
|
|
"github.com/superseriousbusiness/activity/streams/vocab"
|
2023-04-06 12:19:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/ap"
|
2024-02-14 11:13:38 +00:00
|
|
|
apiutil "github.com/superseriousbusiness/gotosocial/internal/api/util"
|
2023-05-28 20:05:15 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2022-07-19 09:47:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/log"
|
2021-05-08 13:25:55 +01:00
|
|
|
)
|
|
|
|
|
2023-06-13 15:47:56 +01:00
|
|
|
// federatingActor wraps the pub.FederatingActor
|
2023-04-06 12:19:55 +01:00
|
|
|
// with some custom GoToSocial-specific logic.
|
2021-05-08 13:25:55 +01:00
|
|
|
type federatingActor struct {
|
2023-04-06 12:19:55 +01:00
|
|
|
sideEffectActor pub.DelegateActor
|
|
|
|
wrapped pub.FederatingActor
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
|
2023-06-13 15:47:56 +01:00
|
|
|
// newFederatingActor returns a federatingActor.
|
2021-05-08 13:25:55 +01:00
|
|
|
func newFederatingActor(c pub.CommonBehavior, s2s pub.FederatingProtocol, db pub.Database, clock pub.Clock) pub.FederatingActor {
|
2023-04-06 12:19:55 +01:00
|
|
|
sideEffectActor := pub.NewSideEffectActor(c, s2s, nil, db, clock)
|
2023-05-09 11:16:10 +01:00
|
|
|
sideEffectActor.Serialize = ap.Serialize // hook in our own custom Serialize function
|
2021-05-08 13:25:55 +01:00
|
|
|
|
|
|
|
return &federatingActor{
|
2023-04-06 12:19:55 +01:00
|
|
|
sideEffectActor: sideEffectActor,
|
2023-05-09 11:16:10 +01:00
|
|
|
wrapped: pub.NewCustomActor(sideEffectActor, false, true, clock),
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-06 12:19:55 +01:00
|
|
|
// PostInboxScheme is a reimplementation of the default baseActor
|
|
|
|
// implementation of PostInboxScheme in pub/base_actor.go.
|
|
|
|
//
|
|
|
|
// Key differences from that implementation:
|
|
|
|
// - More explicit debug logging when a request is not processed.
|
|
|
|
// - Normalize content of activity object.
|
2023-05-28 20:05:15 +01:00
|
|
|
// - *ALWAYS* return gtserror.WithCode if there's an issue, to
|
|
|
|
// provide more helpful messages to remote callers.
|
2023-04-06 12:19:55 +01:00
|
|
|
// - Return code 202 instead of 200 on successful POST, to reflect
|
|
|
|
// that we process most side effects asynchronously.
|
|
|
|
func (f *federatingActor) PostInboxScheme(ctx context.Context, w http.ResponseWriter, r *http.Request, scheme string) (bool, error) {
|
2023-05-28 20:05:15 +01:00
|
|
|
l := log.WithContext(ctx).
|
2023-04-06 12:19:55 +01:00
|
|
|
WithFields([]kv.Field{
|
|
|
|
{"userAgent", r.UserAgent()},
|
|
|
|
{"path", r.URL.Path},
|
|
|
|
}...)
|
|
|
|
|
2023-05-28 20:05:15 +01:00
|
|
|
// Ensure valid ActivityPub Content-Type.
|
|
|
|
// https://www.w3.org/TR/activitypub/#server-to-server-interactions
|
2024-02-14 11:13:38 +00:00
|
|
|
if ct := r.Header.Get("Content-Type"); !apiutil.ASContentType(ct) {
|
2023-05-28 20:05:15 +01:00
|
|
|
const ct1 = "application/activity+json"
|
|
|
|
const ct2 = "application/ld+json;profile=https://w3.org/ns/activitystreams"
|
|
|
|
err := fmt.Errorf("Content-Type %s not acceptable, this endpoint accepts: [%q %q]", ct, ct1, ct2)
|
|
|
|
return false, gtserror.NewErrorNotAcceptable(err)
|
2023-04-06 12:19:55 +01:00
|
|
|
}
|
|
|
|
|
2023-05-28 20:05:15 +01:00
|
|
|
// Authenticate request by checking http signature.
|
2024-04-03 13:57:07 +01:00
|
|
|
//
|
|
|
|
// NOTE: the behaviour here is a little strange as we have
|
|
|
|
// the competing code styles of the go-fed interface expecting
|
|
|
|
// that any 'err' is fatal, but 'authenticated' bool is intended to
|
|
|
|
// be the main passer of whether failed auth occurred, but we in
|
|
|
|
// the gts codebase use errors to pass-back non-200 status codes,
|
|
|
|
// so we specifically have to check for already wrapped with code.
|
|
|
|
//
|
2023-04-06 12:19:55 +01:00
|
|
|
ctx, authenticated, err := f.sideEffectActor.AuthenticatePostInbox(ctx, w, r)
|
2024-04-11 10:45:35 +01:00
|
|
|
if errorsv2.AsV2[gtserror.WithCode](err) != nil {
|
2024-04-03 13:57:07 +01:00
|
|
|
// If it was already wrapped with an
|
|
|
|
// HTTP code then don't bother rewrapping
|
|
|
|
// it, just return it as-is for caller to
|
|
|
|
// handle. AuthenticatePostInbox already
|
|
|
|
// calls WriteHeader() in some situations.
|
|
|
|
return false, err
|
|
|
|
} else if err != nil {
|
2023-10-03 14:59:30 +01:00
|
|
|
err := gtserror.Newf("error authenticating post inbox: %w", err)
|
2023-05-28 20:05:15 +01:00
|
|
|
return false, gtserror.NewErrorInternalError(err)
|
2023-06-13 15:47:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if !authenticated {
|
2023-10-03 14:59:30 +01:00
|
|
|
const text = "not authenticated"
|
|
|
|
return false, gtserror.NewErrorUnauthorized(errors.New(text), text)
|
2023-05-28 20:05:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Begin processing the request, but note that we
|
|
|
|
have not yet applied authorization (ie., blocks).
|
|
|
|
*/
|
|
|
|
|
2024-01-18 16:11:13 +00:00
|
|
|
// Resolve the activity, rejecting badly formatted / transient.
|
|
|
|
activity, ok, errWithCode := ap.ResolveIncomingActivity(r)
|
2023-05-28 20:05:15 +01:00
|
|
|
if errWithCode != nil {
|
|
|
|
return false, errWithCode
|
2024-01-18 16:11:13 +00:00
|
|
|
} else if !ok { // transient
|
|
|
|
return false, nil
|
2023-05-28 20:05:15 +01:00
|
|
|
}
|
|
|
|
|
2023-06-13 15:47:56 +01:00
|
|
|
// Set additional context data. Primarily this means
|
|
|
|
// looking at the Activity and seeing which IRIs are
|
|
|
|
// involved in it tangentially.
|
2023-05-28 20:05:15 +01:00
|
|
|
ctx, err = f.sideEffectActor.PostInboxRequestBodyHook(ctx, r, activity)
|
|
|
|
if err != nil {
|
2023-10-03 14:59:30 +01:00
|
|
|
err := gtserror.Newf("error during post inbox request body hook: %w", err)
|
2023-05-28 20:05:15 +01:00
|
|
|
return false, gtserror.NewErrorInternalError(err)
|
2023-04-06 12:19:55 +01:00
|
|
|
}
|
|
|
|
|
2023-06-13 15:47:56 +01:00
|
|
|
// Check authorization of the activity; this will include blocks.
|
2023-05-28 20:05:15 +01:00
|
|
|
authorized, err := f.sideEffectActor.AuthorizePostInbox(ctx, w, activity)
|
|
|
|
if err != nil {
|
2024-04-11 10:45:35 +01:00
|
|
|
if errorsv2.AsV2[*errOtherIRIBlocked](err) != nil {
|
2023-06-13 15:47:56 +01:00
|
|
|
// There's no direct block between requester(s) and
|
|
|
|
// receiver. However, one or more of the other IRIs
|
|
|
|
// involved in the request (account replied to, note
|
|
|
|
// boosted, etc) is blocked either at domain level or
|
|
|
|
// by the receiver. We don't need to return 403 here,
|
|
|
|
// instead, just return 202 accepted but don't do any
|
|
|
|
// further processing of the activity.
|
2024-04-11 10:45:35 +01:00
|
|
|
return true, nil //nolint
|
2023-06-13 15:47:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Real error has occurred.
|
2023-10-03 14:59:30 +01:00
|
|
|
err := gtserror.Newf("error authorizing post inbox: %w", err)
|
2023-05-28 20:05:15 +01:00
|
|
|
return false, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !authorized {
|
2023-06-13 15:47:56 +01:00
|
|
|
// Block exists either from this instance against
|
|
|
|
// one or more directly involved actors, or between
|
|
|
|
// receiving account and one of those actors.
|
2023-10-03 14:59:30 +01:00
|
|
|
const text = "blocked"
|
|
|
|
return false, gtserror.NewErrorForbidden(errors.New(text), text)
|
2023-05-28 20:05:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Copy existing URL + add request host and scheme.
|
|
|
|
inboxID := func() *url.URL {
|
|
|
|
u := new(url.URL)
|
|
|
|
*u = *r.URL
|
|
|
|
u.Host = r.Host
|
|
|
|
u.Scheme = scheme
|
|
|
|
return u
|
|
|
|
}()
|
|
|
|
|
|
|
|
// At this point we have everything we need, and have verified that
|
|
|
|
// the POST request is authentic (properly signed) and authorized
|
|
|
|
// (permitted to interact with the target inbox).
|
2023-04-06 12:19:55 +01:00
|
|
|
//
|
2024-09-16 16:49:40 +01:00
|
|
|
// Post the activity to the Actor's inbox and trigger side effects.
|
2023-05-28 20:05:15 +01:00
|
|
|
if err := f.sideEffectActor.PostInbox(ctx, inboxID, activity); err != nil {
|
2024-09-16 16:49:40 +01:00
|
|
|
// Check if it's a bad request because the
|
|
|
|
// object or target props weren't populated,
|
|
|
|
// or we failed parsing activity details.
|
|
|
|
//
|
|
|
|
// Log such activities to help debug, then
|
|
|
|
// return the rejection (400) to the peer.
|
|
|
|
if gtserror.IsMalformed(err) ||
|
|
|
|
errors.Is(err, pub.ErrObjectRequired) ||
|
|
|
|
errors.Is(err, pub.ErrTargetRequired) {
|
|
|
|
|
2023-11-30 16:22:34 +00:00
|
|
|
l = l.WithField("activity", activity)
|
|
|
|
l.Warnf("malformed incoming activity: %v", err)
|
|
|
|
|
|
|
|
const text = "malformed incoming activity"
|
2023-10-03 14:59:30 +01:00
|
|
|
return false, gtserror.NewErrorBadRequest(errors.New(text), text)
|
2023-05-28 20:05:15 +01:00
|
|
|
}
|
|
|
|
|
2024-10-05 16:08:42 +01:00
|
|
|
// Check if a function in the federatingDB
|
|
|
|
// has returned an explicit errWithCode for us.
|
|
|
|
if errWithCode, ok := err.(gtserror.WithCode); ok {
|
|
|
|
return false, errWithCode
|
|
|
|
}
|
|
|
|
|
2024-09-16 16:49:40 +01:00
|
|
|
// Default: there's been some real error.
|
2023-10-03 14:59:30 +01:00
|
|
|
err := gtserror.Newf("error calling sideEffectActor.PostInbox: %w", err)
|
2023-05-28 20:05:15 +01:00
|
|
|
return false, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Side effects are complete. Now delegate determining whether
|
|
|
|
// to do inbox forwarding, as well as the action to do it.
|
|
|
|
if err := f.sideEffectActor.InboxForwarding(ctx, inboxID, activity); err != nil {
|
|
|
|
// As a not-ideal side-effect, InboxForwarding will try
|
|
|
|
// to create entries if the federatingDB returns `false`
|
|
|
|
// when calling `Exists()` to determine whether the Activity
|
|
|
|
// is in the database.
|
|
|
|
//
|
|
|
|
// Since our `Exists()` function currently *always*
|
2023-08-11 14:17:36 +01:00
|
|
|
// returns false, it will *always* attempt to parse
|
|
|
|
// out and insert the Activity, trying to fetch other
|
|
|
|
// items from the DB in the process, which may or may
|
|
|
|
// not exist yet. Therefore, we should expect some
|
|
|
|
// errors coming from this function, and only warn log
|
|
|
|
// on certain ones.
|
2023-05-28 20:05:15 +01:00
|
|
|
//
|
|
|
|
// This check may be removed when the `Exists()` func
|
|
|
|
// is updated, and/or federating callbacks are handled
|
|
|
|
// properly.
|
2023-11-30 16:22:34 +00:00
|
|
|
if !errorsv2.IsV2(
|
2023-08-11 14:17:36 +01:00
|
|
|
err,
|
|
|
|
db.ErrAlreadyExists,
|
|
|
|
db.ErrNoEntries,
|
|
|
|
) {
|
2023-06-14 14:08:31 +01:00
|
|
|
// Failed inbox forwarding is not a show-stopper,
|
|
|
|
// and doesn't even necessarily denote a real error.
|
2023-10-03 14:59:30 +01:00
|
|
|
l.Warnf("error calling sideEffectActor.InboxForwarding: %v", err)
|
2023-05-28 20:05:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Request is now undergoing processing. Caller
|
|
|
|
// of this function will handle writing Accepted.
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Functions below are just lightly wrapped versions
|
|
|
|
of the original go-fed federatingActor functions.
|
|
|
|
*/
|
2023-04-06 12:19:55 +01:00
|
|
|
|
2023-05-28 20:05:15 +01:00
|
|
|
func (f *federatingActor) PostInbox(c context.Context, w http.ResponseWriter, r *http.Request) (bool, error) {
|
|
|
|
return f.PostInboxScheme(c, w, r, "https")
|
|
|
|
}
|
2023-04-06 12:19:55 +01:00
|
|
|
|
2023-05-28 20:05:15 +01:00
|
|
|
func (f *federatingActor) Send(c context.Context, outbox *url.URL, t vocab.Type) (pub.Activity, error) {
|
|
|
|
log.Infof(c, "send activity %s via outbox %s", t.GetTypeName(), outbox)
|
|
|
|
return f.wrapped.Send(c, outbox, t)
|
2021-05-15 10:58:11 +01:00
|
|
|
}
|
|
|
|
|
2021-05-08 13:25:55 +01:00
|
|
|
func (f *federatingActor) GetInbox(c context.Context, w http.ResponseWriter, r *http.Request) (bool, error) {
|
2023-04-06 12:19:55 +01:00
|
|
|
return f.wrapped.GetInbox(c, w, r)
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *federatingActor) PostOutbox(c context.Context, w http.ResponseWriter, r *http.Request) (bool, error) {
|
2023-04-06 12:19:55 +01:00
|
|
|
return f.wrapped.PostOutbox(c, w, r)
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
|
2021-05-15 10:58:11 +01:00
|
|
|
func (f *federatingActor) PostOutboxScheme(c context.Context, w http.ResponseWriter, r *http.Request, scheme string) (bool, error) {
|
2023-04-06 12:19:55 +01:00
|
|
|
return f.wrapped.PostOutboxScheme(c, w, r, scheme)
|
2021-05-15 10:58:11 +01:00
|
|
|
}
|
|
|
|
|
2021-05-08 13:25:55 +01:00
|
|
|
func (f *federatingActor) GetOutbox(c context.Context, w http.ResponseWriter, r *http.Request) (bool, error) {
|
2023-04-06 12:19:55 +01:00
|
|
|
return f.wrapped.GetOutbox(c, w, r)
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|