1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* vim: set expandtab ts=4 sw=4: */
- /*
- * You may redistribute this program and/or modify it under the terms of
- * the GNU 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- #include "benc/Dict.h"
- #include "subnode/PingResponder.h"
- #include "util/Identity.h"
- #include "wire/Error.h"
- struct PingResponder_pvt
- {
- struct PingResponder pub;
- struct MsgCore_Handler* handler;
- struct AddrSet* peers;
- struct Log* log;
- struct Allocator* alloc;
- struct MsgCore* msgCore;
- struct BoilerplateResponder* br;
- struct EncodingScheme* myScheme;
- Identity
- };
- static struct RTypes_Error_t* onPing(Dict* msg,
- struct Address* src,
- struct Allocator* tmpAlloc,
- struct MsgCore_Handler* handler)
- {
- struct PingResponder_pvt* prp = Identity_check((struct PingResponder_pvt*) handler->userData);
- Log_debug(prp->log, "Received ping req from [%s]", Address_toString(src, tmpAlloc)->bytes);
- String* txid = Dict_getStringC(msg, "txid");
- if (!txid) {
- Log_debug(prp->log, "ping missing txid");
- return Rffi_error("INVALID", tmpAlloc);
- }
- Dict* responseDict = Dict_new(tmpAlloc);
- String* q = Dict_getStringC(msg, "q");
- if (!q || !String_equals(q, String_CONST("pn"))) {
- Dict_putStringCC(responseDict, "error", "unsupported query type", tmpAlloc);
- }
- if (!src->protocolVersion) {
- } else if (src->protocolVersion >= 21) {
- } else if (EncodingScheme_isOneHop(prp->myScheme, src->path)) {
- // Always reply to peers
- } else {
- Log_debug(prp->log, "DROP query from [%s] because their version is [%d] and they won't "
- "respect do-not-disturb",
- Address_toString(src, tmpAlloc)->bytes,
- src->protocolVersion);
- return Rffi_error("UNHANDLED", tmpAlloc);
- }
- Dict_putStringC(responseDict, "txid", txid, tmpAlloc);
- Dict_putIntC(msg, "dnd", 1, tmpAlloc); // do not disturb
- BoilerplateResponder_addBoilerplate(prp->br, responseDict, src, tmpAlloc);
- MsgCore_sendResponse(prp->msgCore, responseDict, src, tmpAlloc);
- return NULL;
- }
- struct PingResponder* PingResponder_new(struct Allocator* allocator,
- struct Log* log,
- struct MsgCore* msgCore,
- struct BoilerplateResponder* br,
- struct EncodingScheme* myScheme)
- {
- struct Allocator* alloc = Allocator_child(allocator);
- struct PingResponder_pvt* prp =
- Allocator_calloc(alloc, sizeof(struct PingResponder_pvt), 1);
- Identity_set(prp);
- prp->log = log;
- prp->alloc = alloc;
- prp->msgCore = msgCore;
- prp->handler = MsgCore_onQuery(msgCore, "pn", alloc);
- prp->handler->userData = prp;
- prp->handler->cb = onPing;
- prp->br = br;
- prp->myScheme = myScheme;
- return &prp->pub;
- }
|