Branch data Line data Source code
1 : : /* -------------------------------------------------------------------------
2 : : *
3 : : * decode.c
4 : : * This module decodes WAL records read using xlogreader.h's APIs for the
5 : : * purpose of logical decoding by passing information to the
6 : : * reorderbuffer module (containing the actual changes) and to the
7 : : * snapbuild module to build a fitting catalog snapshot (to be able to
8 : : * properly decode the changes in the reorderbuffer).
9 : : *
10 : : * NOTE:
11 : : * This basically tries to handle all low level xlog stuff for
12 : : * reorderbuffer.c and snapbuild.c. There's some minor leakage where a
13 : : * specific record's struct is used to pass data along, but those just
14 : : * happen to contain the right amount of data in a convenient
15 : : * format. There isn't and shouldn't be much intelligence about the
16 : : * contents of records in here except turning them into a more usable
17 : : * format.
18 : : *
19 : : * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
20 : : * Portions Copyright (c) 1994, Regents of the University of California
21 : : *
22 : : * IDENTIFICATION
23 : : * src/backend/replication/logical/decode.c
24 : : *
25 : : * -------------------------------------------------------------------------
26 : : */
27 : : #include "postgres.h"
28 : :
29 : : #include "access/heapam_xlog.h"
30 : : #include "access/transam.h"
31 : : #include "access/xact.h"
32 : : #include "access/xlog_internal.h"
33 : : #include "access/xlogreader.h"
34 : : #include "access/xlogrecord.h"
35 : : #include "catalog/pg_control.h"
36 : : #include "commands/repack.h"
37 : : #include "replication/decode.h"
38 : : #include "replication/logical.h"
39 : : #include "replication/message.h"
40 : : #include "replication/reorderbuffer.h"
41 : : #include "replication/snapbuild.h"
42 : : #include "storage/standbydefs.h"
43 : :
44 : : /* individual record(group)'s handlers */
45 : : static void DecodeInsert(LogicalDecodingContext *ctx, XLogRecordBuffer *buf);
46 : : static void DecodeUpdate(LogicalDecodingContext *ctx, XLogRecordBuffer *buf);
47 : : static void DecodeDelete(LogicalDecodingContext *ctx, XLogRecordBuffer *buf);
48 : : static void DecodeTruncate(LogicalDecodingContext *ctx, XLogRecordBuffer *buf);
49 : : static void DecodeMultiInsert(LogicalDecodingContext *ctx, XLogRecordBuffer *buf);
50 : : static void DecodeSpecConfirm(LogicalDecodingContext *ctx, XLogRecordBuffer *buf);
51 : :
52 : : static void DecodeCommit(LogicalDecodingContext *ctx, XLogRecordBuffer *buf,
53 : : xl_xact_parsed_commit *parsed, TransactionId xid,
54 : : bool two_phase);
55 : : static void DecodeAbort(LogicalDecodingContext *ctx, XLogRecordBuffer *buf,
56 : : xl_xact_parsed_abort *parsed, TransactionId xid,
57 : : bool two_phase);
58 : : static void DecodePrepare(LogicalDecodingContext *ctx, XLogRecordBuffer *buf,
59 : : xl_xact_parsed_prepare *parsed);
60 : :
61 : :
62 : : /* common function to decode tuples */
63 : : static void DecodeXLogTuple(char *data, Size len, HeapTuple tuple);
64 : :
65 : : /* helper functions for decoding transactions */
66 : : static inline bool FilterPrepare(LogicalDecodingContext *ctx,
67 : : TransactionId xid, const char *gid);
68 : : static bool DecodeTXNNeedSkip(LogicalDecodingContext *ctx,
69 : : XLogRecordBuffer *buf, Oid txn_dbid,
70 : : ReplOriginId origin_id);
71 : :
72 : : /*
73 : : * Take every XLogReadRecord()ed record and perform the actions required to
74 : : * decode it using the output plugin already setup in the logical decoding
75 : : * context.
76 : : *
77 : : * NB: Note that every record's xid needs to be processed by reorderbuffer
78 : : * (xids contained in the content of records are not relevant for this rule).
79 : : * That means that for records which'd otherwise not go through the
80 : : * reorderbuffer ReorderBufferProcessXid() has to be called. We don't want to
81 : : * call ReorderBufferProcessXid for each record type by default, because
82 : : * e.g. empty xacts can be handled more efficiently if there's no previous
83 : : * state for them.
84 : : *
85 : : * We also support the ability to fast forward thru records, skipping some
86 : : * record types completely - see individual record types for details.
87 : : */
88 : : void
89 : 2113031 : LogicalDecodingProcessRecord(LogicalDecodingContext *ctx, XLogReaderState *record)
90 : : {
91 : : XLogRecordBuffer buf;
92 : : TransactionId txid;
93 : : RmgrData rmgr;
94 : :
95 : 2113031 : buf.origptr = ctx->reader->ReadRecPtr;
96 : 2113031 : buf.endptr = ctx->reader->EndRecPtr;
97 : 2113031 : buf.record = record;
98 : :
99 : 2113031 : txid = XLogRecGetTopXid(record);
100 : :
101 : : /*
102 : : * If the top-level xid is valid, we need to assign the subxact to the
103 : : * top-level xact. We need to do this for all records, hence we do it
104 : : * before the switch.
105 : : */
106 [ + + ]: 2113031 : if (TransactionIdIsValid(txid))
107 : : {
108 : 663 : ReorderBufferAssignChild(ctx->reorder,
109 : : txid,
110 : 663 : XLogRecGetXid(record),
111 : : buf.origptr);
112 : : }
113 : :
114 : 2113031 : rmgr = GetRmgr(XLogRecGetRmid(record));
115 : :
116 [ + + ]: 2113031 : if (rmgr.rm_decode != NULL)
117 : 1577833 : rmgr.rm_decode(ctx, &buf);
118 : : else
119 : : {
120 : : /* just deal with xid, and done */
121 : 535198 : ReorderBufferProcessXid(ctx->reorder, XLogRecGetXid(record),
122 : : buf.origptr);
123 : : }
124 : 2113015 : }
125 : :
126 : : /*
127 : : * Handle rmgr XLOG_ID records for LogicalDecodingProcessRecord().
128 : : */
129 : : void
130 : 10271 : xlog_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
131 : : {
132 : 10271 : SnapBuild *builder = ctx->snapshot_builder;
133 : 10271 : uint8 info = XLogRecGetInfo(buf->record) & ~XLR_INFO_MASK;
134 : :
135 : 10271 : ReorderBufferProcessXid(ctx->reorder, XLogRecGetXid(buf->record),
136 : : buf->origptr);
137 : :
138 [ + + - + : 10271 : switch (info)
- ]
139 : : {
140 : : /* this is also used in END_OF_RECOVERY checkpoints */
141 : 104 : case XLOG_CHECKPOINT_SHUTDOWN:
142 : : case XLOG_END_OF_RECOVERY:
143 : 104 : SnapBuildSerializationPoint(builder, buf->origptr);
144 : :
145 : 104 : break;
146 : 85 : case XLOG_CHECKPOINT_ONLINE:
147 : :
148 : : /*
149 : : * a RUNNING_XACTS record will have been logged near to this, we
150 : : * can restart from there.
151 : : */
152 : 85 : break;
153 : 0 : case XLOG_LOGICAL_DECODING_STATUS_CHANGE:
154 : : {
155 : : bool logical_decoding;
156 : :
157 : 0 : memcpy(&logical_decoding, XLogRecGetData(buf->record), sizeof(bool));
158 : :
159 : : /*
160 : : * Error out as we should not decode this WAL record.
161 : : *
162 : : * Logical decoding is disabled, and existing logical slots on
163 : : * the standby are invalidated when this WAL record is
164 : : * replayed. No logical decoder can process this WAL record
165 : : * until replay completes, and by then the slots are already
166 : : * invalidated. Furthermore, no new logical slots can be
167 : : * created while logical decoding is disabled. This cannot
168 : : * occur even on primary either, since it will not restart
169 : : * with wal_level < replica if any logical slots exist.
170 : : */
171 [ # # ]: 0 : elog(ERROR, "unexpected logical decoding status change %d",
172 : : logical_decoding);
173 : :
174 : : break;
175 : : }
176 : 10082 : case XLOG_NOOP:
177 : : case XLOG_NEXTOID:
178 : : case XLOG_SWITCH:
179 : : case XLOG_BACKUP_END:
180 : : case XLOG_PARAMETER_CHANGE:
181 : : case XLOG_RESTORE_POINT:
182 : : case XLOG_FPW_CHANGE:
183 : : case XLOG_FPI_FOR_HINT:
184 : : case XLOG_FPI:
185 : : case XLOG_OVERWRITE_CONTRECORD:
186 : : case XLOG_CHECKPOINT_REDO:
187 : 10082 : break;
188 : 0 : default:
189 [ # # ]: 0 : elog(ERROR, "unexpected RM_XLOG_ID record type: %u", info);
190 : : }
191 : 10271 : }
192 : :
193 : : void
194 : 0 : xlog2_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
195 : : {
196 : 0 : uint8 info = XLogRecGetInfo(buf->record) & ~XLR_INFO_MASK;
197 : :
198 : 0 : ReorderBufferProcessXid(ctx->reorder, XLogRecGetXid(buf->record), buf->origptr);
199 : :
200 [ # # ]: 0 : switch (info)
201 : : {
202 : 0 : case XLOG2_CHECKSUMS:
203 : 0 : break;
204 : 0 : default:
205 [ # # ]: 0 : elog(ERROR, "unexpected RM_XLOG2_ID record type: %u", info);
206 : : }
207 : 0 : }
208 : :
209 : : /*
210 : : * Handle rmgr XACT_ID records for LogicalDecodingProcessRecord().
211 : : */
212 : : void
213 : 11232 : xact_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
214 : : {
215 : 11232 : SnapBuild *builder = ctx->snapshot_builder;
216 : 11232 : ReorderBuffer *reorder = ctx->reorder;
217 : 11232 : XLogReaderState *r = buf->record;
218 : 11232 : uint8 info = XLogRecGetInfo(r) & XLOG_XACT_OPMASK;
219 : :
220 : : /*
221 : : * If the snapshot isn't yet fully built, we cannot decode anything, so
222 : : * bail out.
223 : : */
224 [ + + ]: 11232 : if (SnapBuildCurrentState(builder) < SNAPBUILD_FULL_SNAPSHOT)
225 : 15 : return;
226 : :
227 [ + + + + : 11217 : switch (info)
+ - ]
228 : : {
229 : 4141 : case XLOG_XACT_COMMIT:
230 : : case XLOG_XACT_COMMIT_PREPARED:
231 : : {
232 : : xl_xact_commit *xlrec;
233 : : xl_xact_parsed_commit parsed;
234 : : TransactionId xid;
235 : 4141 : bool two_phase = false;
236 : :
237 : 4141 : xlrec = (xl_xact_commit *) XLogRecGetData(r);
238 : 4141 : ParseCommitRecord(XLogRecGetInfo(buf->record), xlrec, &parsed);
239 : :
240 [ + + ]: 4141 : if (!TransactionIdIsValid(parsed.twophase_xid))
241 : 4013 : xid = XLogRecGetXid(r);
242 : : else
243 : 128 : xid = parsed.twophase_xid;
244 : :
245 : : /*
246 : : * We would like to process the transaction in a two-phase
247 : : * manner iff output plugin supports two-phase commits and
248 : : * doesn't filter the transaction at prepare time.
249 : : */
250 [ + + ]: 4141 : if (info == XLOG_XACT_COMMIT_PREPARED)
251 : 128 : two_phase = !(FilterPrepare(ctx, xid,
252 : 128 : parsed.twophase_gid));
253 : :
254 : 4141 : DecodeCommit(ctx, buf, &parsed, xid, two_phase);
255 : 4127 : break;
256 : : }
257 : 253 : case XLOG_XACT_ABORT:
258 : : case XLOG_XACT_ABORT_PREPARED:
259 : : {
260 : : xl_xact_abort *xlrec;
261 : : xl_xact_parsed_abort parsed;
262 : : TransactionId xid;
263 : 253 : bool two_phase = false;
264 : :
265 : 253 : xlrec = (xl_xact_abort *) XLogRecGetData(r);
266 : 253 : ParseAbortRecord(XLogRecGetInfo(buf->record), xlrec, &parsed);
267 : :
268 [ + + ]: 253 : if (!TransactionIdIsValid(parsed.twophase_xid))
269 : 203 : xid = XLogRecGetXid(r);
270 : : else
271 : 50 : xid = parsed.twophase_xid;
272 : :
273 : : /*
274 : : * We would like to process the transaction in a two-phase
275 : : * manner iff output plugin supports two-phase commits and
276 : : * doesn't filter the transaction at prepare time.
277 : : */
278 [ + + ]: 253 : if (info == XLOG_XACT_ABORT_PREPARED)
279 : 50 : two_phase = !(FilterPrepare(ctx, xid,
280 : 50 : parsed.twophase_gid));
281 : :
282 : 253 : DecodeAbort(ctx, buf, &parsed, xid, two_phase);
283 : 253 : break;
284 : : }
285 : 115 : case XLOG_XACT_ASSIGNMENT:
286 : :
287 : : /*
288 : : * We assign subxact to the toplevel xact while processing each
289 : : * record if required. So, we don't need to do anything here. See
290 : : * LogicalDecodingProcessRecord.
291 : : */
292 : 115 : break;
293 : 6508 : case XLOG_XACT_INVALIDATIONS:
294 : : {
295 : : TransactionId xid;
296 : : xl_xact_invals *invals;
297 : :
298 : 6508 : xid = XLogRecGetXid(r);
299 : 6508 : invals = (xl_xact_invals *) XLogRecGetData(r);
300 : :
301 : : /*
302 : : * Execute the invalidations for xid-less transactions,
303 : : * otherwise, accumulate them so that they can be processed at
304 : : * the commit time.
305 : : */
306 [ + + ]: 6508 : if (TransactionIdIsValid(xid))
307 : : {
308 [ + + ]: 6473 : if (!ctx->fast_forward)
309 : 6398 : ReorderBufferAddInvalidations(reorder, xid,
310 : : buf->origptr,
311 : 6398 : invals->nmsgs,
312 : 6398 : invals->msgs);
313 : 6473 : ReorderBufferXidSetCatalogChanges(ctx->reorder, xid,
314 : : buf->origptr);
315 : : }
316 [ + - ]: 35 : else if (!ctx->fast_forward)
317 : 35 : ReorderBufferImmediateInvalidation(ctx->reorder,
318 : 35 : invals->nmsgs,
319 : 35 : invals->msgs);
320 : :
321 : 6508 : break;
322 : : }
323 : 200 : case XLOG_XACT_PREPARE:
324 : : {
325 : : xl_xact_parsed_prepare parsed;
326 : : xl_xact_prepare *xlrec;
327 : :
328 : : /* ok, parse it */
329 : 200 : xlrec = (xl_xact_prepare *) XLogRecGetData(r);
330 : 200 : ParsePrepareRecord(XLogRecGetInfo(buf->record),
331 : : xlrec, &parsed);
332 : :
333 : : /*
334 : : * We would like to process the transaction in a two-phase
335 : : * manner iff output plugin supports two-phase commits and
336 : : * doesn't filter the transaction at prepare time.
337 : : */
338 [ + + ]: 200 : if (FilterPrepare(ctx, parsed.twophase_xid,
339 : : parsed.twophase_gid))
340 : : {
341 : 21 : ReorderBufferProcessXid(reorder, parsed.twophase_xid,
342 : : buf->origptr);
343 : 21 : break;
344 : : }
345 : :
346 : : /*
347 : : * Note that if the prepared transaction has locked [user]
348 : : * catalog tables exclusively then decoding prepare can block
349 : : * till the main transaction is committed because it needs to
350 : : * lock the catalog tables.
351 : : *
352 : : * XXX Now, this can even lead to a deadlock if the prepare
353 : : * transaction is waiting to get it logically replicated for
354 : : * distributed 2PC. This can be avoided by disallowing
355 : : * preparing transactions that have locked [user] catalog
356 : : * tables exclusively but as of now, we ask users not to do
357 : : * such an operation.
358 : : */
359 : 179 : DecodePrepare(ctx, buf, &parsed);
360 : 179 : break;
361 : : }
362 : 0 : default:
363 [ # # ]: 0 : elog(ERROR, "unexpected RM_XACT_ID record type: %u", info);
364 : : }
365 : : }
366 : :
367 : : /*
368 : : * Handle rmgr STANDBY_ID records for LogicalDecodingProcessRecord().
369 : : */
370 : : void
371 : 4651 : standby_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
372 : : {
373 : 4651 : SnapBuild *builder = ctx->snapshot_builder;
374 : 4651 : XLogReaderState *r = buf->record;
375 : 4651 : uint8 info = XLogRecGetInfo(r) & ~XLR_INFO_MASK;
376 : :
377 : 4651 : ReorderBufferProcessXid(ctx->reorder, XLogRecGetXid(r), buf->origptr);
378 : :
379 [ + + + - ]: 4651 : switch (info)
380 : : {
381 : 1768 : case XLOG_RUNNING_XACTS:
382 : : {
383 : 1768 : xl_running_xacts *running = (xl_running_xacts *) XLogRecGetData(r);
384 : :
385 : : /*
386 : : * Update this decoder's idea of transactions currently
387 : : * running. In doing so we will determine whether we have
388 : : * reached consistent status.
389 : : */
390 : 1768 : SnapBuildProcessRunningXacts(builder, buf->origptr, running);
391 : :
392 : : /*
393 : : * Abort all transactions that we keep track of, that are
394 : : * older than the record's oldestRunningXid. This is the most
395 : : * convenient spot for doing so since, in contrast to shutdown
396 : : * or end-of-recovery checkpoints, we have information about
397 : : * all running transactions which includes prepared ones,
398 : : * while shutdown checkpoints just know that no non-prepared
399 : : * transactions are in progress.
400 : : */
401 : 1766 : ReorderBufferAbortOld(ctx->reorder, running->oldestRunningXid);
402 : : }
403 : 1766 : break;
404 : 2848 : case XLOG_STANDBY_LOCK:
405 : 2848 : break;
406 : 35 : case XLOG_INVALIDATIONS:
407 : :
408 : : /*
409 : : * We are processing the invalidations at the command level via
410 : : * XLOG_XACT_INVALIDATIONS. So we don't need to do anything here.
411 : : */
412 : 35 : break;
413 : 0 : default:
414 [ # # ]: 0 : elog(ERROR, "unexpected RM_STANDBY_ID record type: %u", info);
415 : : }
416 : 4649 : }
417 : :
418 : : /*
419 : : * Handle rmgr HEAP2_ID records for LogicalDecodingProcessRecord().
420 : : */
421 : : void
422 : 39419 : heap2_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
423 : : {
424 : 39419 : uint8 info = XLogRecGetInfo(buf->record) & XLOG_HEAP_OPMASK;
425 : 39419 : TransactionId xid = XLogRecGetXid(buf->record);
426 : 39419 : SnapBuild *builder = ctx->snapshot_builder;
427 : :
428 : 39419 : ReorderBufferProcessXid(ctx->reorder, xid, buf->origptr);
429 : :
430 : : /*
431 : : * If we don't have snapshot or we are just fast-forwarding, there is no
432 : : * point in decoding data changes. However, it's crucial to build the base
433 : : * snapshot during fast-forward mode (as is done in
434 : : * SnapBuildProcessChange()) because we require the snapshot's xmin when
435 : : * determining the candidate catalog_xmin for the replication slot. See
436 : : * SnapBuildProcessRunningXacts().
437 : : */
438 [ + + ]: 39419 : if (SnapBuildCurrentState(builder) < SNAPBUILD_FULL_SNAPSHOT)
439 : 9 : return;
440 : :
441 [ + + + + : 39410 : switch (info)
- ]
442 : : {
443 : 7482 : case XLOG_HEAP2_MULTI_INSERT:
444 [ + - ]: 7482 : if (SnapBuildProcessChange(builder, xid, buf->origptr) &&
445 [ + + ]: 7482 : !ctx->fast_forward &&
446 [ + + ]: 7379 : !change_useless_for_repack(buf))
447 : 7277 : DecodeMultiInsert(ctx, buf);
448 : 7482 : break;
449 : 30314 : case XLOG_HEAP2_NEW_CID:
450 [ + + ]: 30314 : if (!ctx->fast_forward)
451 : : {
452 : : xl_heap_new_cid *xlrec;
453 : :
454 : 29931 : xlrec = (xl_heap_new_cid *) XLogRecGetData(buf->record);
455 : 29931 : SnapBuildProcessNewCid(builder, xid, buf->origptr, xlrec);
456 : : }
457 : 30314 : break;
458 : 90 : case XLOG_HEAP2_REWRITE:
459 : :
460 : : /*
461 : : * Although these records only exist to serve the needs of logical
462 : : * decoding, all the work happens as part of crash or archive
463 : : * recovery, so we don't need to do anything here.
464 : : */
465 : 90 : break;
466 : :
467 : : /*
468 : : * Everything else here is just low level physical stuff we're not
469 : : * interested in.
470 : : */
471 : 1524 : case XLOG_HEAP2_PRUNE_ON_ACCESS:
472 : : case XLOG_HEAP2_PRUNE_VACUUM_SCAN:
473 : : case XLOG_HEAP2_PRUNE_VACUUM_CLEANUP:
474 : : case XLOG_HEAP2_LOCK_UPDATED:
475 : 1524 : break;
476 : 0 : default:
477 [ # # ]: 0 : elog(ERROR, "unexpected RM_HEAP2_ID record type: %u", info);
478 : : }
479 : : }
480 : :
481 : : /*
482 : : * Handle rmgr HEAP_ID records for LogicalDecodingProcessRecord().
483 : : */
484 : : void
485 : 1512159 : heap_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
486 : : {
487 : 1512159 : uint8 info = XLogRecGetInfo(buf->record) & XLOG_HEAP_OPMASK;
488 : 1512159 : TransactionId xid = XLogRecGetXid(buf->record);
489 : 1512159 : SnapBuild *builder = ctx->snapshot_builder;
490 : :
491 : 1512159 : ReorderBufferProcessXid(ctx->reorder, xid, buf->origptr);
492 : :
493 : : /*
494 : : * If we don't have snapshot or we are just fast-forwarding, there is no
495 : : * point in decoding data changes. However, it's crucial to build the base
496 : : * snapshot during fast-forward mode (as is done in
497 : : * SnapBuildProcessChange()) because we require the snapshot's xmin when
498 : : * determining the candidate catalog_xmin for the replication slot. See
499 : : * SnapBuildProcessRunningXacts().
500 : : */
501 [ + + ]: 1512159 : if (SnapBuildCurrentState(builder) < SNAPBUILD_FULL_SNAPSHOT)
502 : 1189 : return;
503 : :
504 [ + + + + : 1510970 : switch (info)
+ + + - ]
505 : : {
506 : 919212 : case XLOG_HEAP_INSERT:
507 [ + + ]: 919212 : if (SnapBuildProcessChange(builder, xid, buf->origptr) &&
508 [ + + ]: 916223 : !ctx->fast_forward &&
509 [ + + ]: 916025 : !change_useless_for_repack(buf))
510 : 915778 : DecodeInsert(ctx, buf);
511 : 919212 : break;
512 : :
513 : : /*
514 : : * Treat HOT update as normal updates. There is no useful
515 : : * information in the fact that we could make it a HOT update
516 : : * locally and the WAL layout is compatible.
517 : : */
518 : 162082 : case XLOG_HEAP_HOT_UPDATE:
519 : : case XLOG_HEAP_UPDATE:
520 [ + - ]: 162082 : if (SnapBuildProcessChange(builder, xid, buf->origptr) &&
521 [ + + ]: 162082 : !ctx->fast_forward &&
522 [ + + ]: 162069 : !change_useless_for_repack(buf))
523 : 162026 : DecodeUpdate(ctx, buf);
524 : 162082 : break;
525 : :
526 : 238630 : case XLOG_HEAP_DELETE:
527 [ + - ]: 238630 : if (SnapBuildProcessChange(builder, xid, buf->origptr) &&
528 [ + + ]: 238630 : !ctx->fast_forward &&
529 [ + + ]: 238536 : !change_useless_for_repack(buf))
530 : 238507 : DecodeDelete(ctx, buf);
531 : 238630 : break;
532 : :
533 : 65 : case XLOG_HEAP_TRUNCATE:
534 [ + - ]: 65 : if (SnapBuildProcessChange(builder, xid, buf->origptr) &&
535 [ + + ]: 65 : !ctx->fast_forward &&
536 [ + - ]: 63 : !change_useless_for_repack(buf))
537 : 63 : DecodeTruncate(ctx, buf);
538 : 65 : break;
539 : :
540 : 1333 : case XLOG_HEAP_INPLACE:
541 : :
542 : : /*
543 : : * Inplace updates are only ever performed on catalog tuples and
544 : : * can, per definition, not change tuple visibility. Since we
545 : : * also don't decode catalog tuples, we're not interested in the
546 : : * record's contents.
547 : : */
548 : 1333 : break;
549 : :
550 : 19750 : case XLOG_HEAP_CONFIRM:
551 [ + - ]: 19750 : if (SnapBuildProcessChange(builder, xid, buf->origptr) &&
552 [ + - ]: 19750 : !ctx->fast_forward &&
553 [ + - ]: 19750 : !change_useless_for_repack(buf))
554 : 19750 : DecodeSpecConfirm(ctx, buf);
555 : 19750 : break;
556 : :
557 : 169898 : case XLOG_HEAP_LOCK:
558 : : /* we don't care about row level locks for now */
559 : 169898 : break;
560 : :
561 : 0 : default:
562 [ # # ]: 0 : elog(ERROR, "unexpected RM_HEAP_ID record type: %u", info);
563 : : break;
564 : : }
565 : : }
566 : :
567 : : /*
568 : : * Ask output plugin whether we want to skip this PREPARE and send
569 : : * this transaction as a regular commit later.
570 : : */
571 : : static inline bool
572 : 378 : FilterPrepare(LogicalDecodingContext *ctx, TransactionId xid,
573 : : const char *gid)
574 : : {
575 : : /*
576 : : * Skip if decoding of two-phase transactions at PREPARE time is not
577 : : * enabled. In that case, all two-phase transactions are considered
578 : : * filtered out and will be applied as regular transactions at COMMIT
579 : : * PREPARED.
580 : : */
581 [ + + ]: 378 : if (!ctx->twophase)
582 : 23 : return true;
583 : :
584 : : /*
585 : : * The filter_prepare callback is optional. When not supplied, all
586 : : * prepared transactions should go through.
587 : : */
588 [ + + ]: 355 : if (ctx->callbacks.filter_prepare_cb == NULL)
589 : 185 : return false;
590 : :
591 : 170 : return filter_prepare_cb_wrapper(ctx, xid, gid);
592 : : }
593 : :
594 : : static inline bool
595 : 1331301 : FilterByOrigin(LogicalDecodingContext *ctx, ReplOriginId origin_id)
596 : : {
597 [ + + ]: 1331301 : if (ctx->callbacks.filter_by_origin_cb == NULL)
598 : 141 : return false;
599 : :
600 : 1331160 : return filter_by_origin_cb_wrapper(ctx, origin_id);
601 : : }
602 : :
603 : : /*
604 : : * Handle rmgr LOGICALMSG_ID records for LogicalDecodingProcessRecord().
605 : : */
606 : : void
607 : 101 : logicalmsg_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
608 : : {
609 : 101 : SnapBuild *builder = ctx->snapshot_builder;
610 : 101 : XLogReaderState *r = buf->record;
611 : 101 : TransactionId xid = XLogRecGetXid(r);
612 : 101 : uint8 info = XLogRecGetInfo(r) & ~XLR_INFO_MASK;
613 : 101 : ReplOriginId origin_id = XLogRecGetOrigin(r);
614 : 101 : Snapshot snapshot = NULL;
615 : : xl_logical_message *message;
616 : :
617 [ - + ]: 101 : if (info != XLOG_LOGICAL_MESSAGE)
618 [ # # ]: 0 : elog(ERROR, "unexpected RM_LOGICALMSG_ID record type: %u", info);
619 : :
620 : 101 : ReorderBufferProcessXid(ctx->reorder, XLogRecGetXid(r), buf->origptr);
621 : :
622 : : /* If we don't have snapshot, there is no point in decoding messages */
623 [ - + ]: 101 : if (SnapBuildCurrentState(builder) < SNAPBUILD_FULL_SNAPSHOT)
624 : 0 : return;
625 : :
626 : 101 : message = (xl_logical_message *) XLogRecGetData(r);
627 : :
628 [ + + + + ]: 200 : if (message->dbId != ctx->slot->data.database ||
629 : 99 : FilterByOrigin(ctx, origin_id))
630 : 4 : return;
631 : :
632 [ + + ]: 97 : if (message->transactional &&
633 [ - + ]: 41 : !SnapBuildProcessChange(builder, xid, buf->origptr))
634 : 0 : return;
635 [ + + + - ]: 153 : else if (!message->transactional &&
636 [ + + ]: 112 : (SnapBuildCurrentState(builder) != SNAPBUILD_CONSISTENT ||
637 : 56 : SnapBuildXactNeedsSkip(builder, buf->origptr)))
638 : 44 : return;
639 : :
640 : : /*
641 : : * We also skip decoding in fast_forward mode. This check must be last
642 : : * because we don't want to set the processing_required flag unless we
643 : : * have a decodable message.
644 : : */
645 [ + + ]: 53 : if (ctx->fast_forward)
646 : : {
647 : : /*
648 : : * We need to set processing_required flag to notify the message's
649 : : * existence to the caller. Usually, the flag is set when either the
650 : : * COMMIT or ABORT records are decoded, but this must be turned on
651 : : * here because the non-transactional logical message is decoded
652 : : * without waiting for these records.
653 : : */
654 [ + - ]: 3 : if (!message->transactional)
655 : 3 : ctx->processing_required = true;
656 : :
657 : 3 : return;
658 : : }
659 : :
660 : : /*
661 : : * If this is a non-transactional change, get the snapshot we're expected
662 : : * to use. We only get here when the snapshot is consistent, and the
663 : : * change is not meant to be skipped.
664 : : *
665 : : * For transactional changes we don't need a snapshot, we'll use the
666 : : * regular snapshot maintained by ReorderBuffer. We just leave it NULL.
667 : : */
668 [ + + ]: 50 : if (!message->transactional)
669 : 9 : snapshot = SnapBuildGetOrBuildSnapshot(builder);
670 : :
671 : 50 : ReorderBufferQueueMessage(ctx->reorder, xid, snapshot, buf->endptr,
672 : 50 : message->transactional,
673 : 50 : message->message, /* first part of message is
674 : : * prefix */
675 : : message->message_size,
676 : 50 : message->message + message->prefix_size);
677 : : }
678 : :
679 : : /*
680 : : * Consolidated commit record handling between the different form of commit
681 : : * records.
682 : : *
683 : : * 'two_phase' indicates that caller wants to process the transaction in two
684 : : * phases, first process prepare if not already done and then process
685 : : * commit_prepared.
686 : : */
687 : : static void
688 : 4141 : DecodeCommit(LogicalDecodingContext *ctx, XLogRecordBuffer *buf,
689 : : xl_xact_parsed_commit *parsed, TransactionId xid,
690 : : bool two_phase)
691 : : {
692 : 4141 : XLogRecPtr origin_lsn = InvalidXLogRecPtr;
693 : 4141 : TimestampTz commit_time = parsed->xact_time;
694 : 4141 : ReplOriginId origin_id = XLogRecGetOrigin(buf->record);
695 : : int i;
696 : :
697 [ + + ]: 4141 : if (parsed->xinfo & XACT_XINFO_HAS_ORIGIN)
698 : : {
699 : 122 : origin_lsn = parsed->origin_lsn;
700 : 122 : commit_time = parsed->origin_timestamp;
701 : : }
702 : :
703 : 4141 : SnapBuildCommitTxn(ctx->snapshot_builder, buf->origptr, xid,
704 : : parsed->nsubxacts, parsed->subxacts,
705 : : parsed->xinfo);
706 : :
707 : : /* ----
708 : : * Check whether we are interested in this specific transaction, and tell
709 : : * the reorderbuffer to forget the content of the (sub-)transactions
710 : : * if not.
711 : : *
712 : : * We can't just use ReorderBufferAbort() here, because we need to execute
713 : : * the transaction's invalidations. This currently won't be needed if
714 : : * we're just skipping over the transaction because currently we only do
715 : : * so during startup, to get to the first transaction the client needs. As
716 : : * we have reset the catalog caches before starting to read WAL, and we
717 : : * haven't yet touched any catalogs, there can't be anything to invalidate.
718 : : * But if we're "forgetting" this commit because it happened in another
719 : : * database, the invalidations might be important, because they could be
720 : : * for shared catalogs and we might have loaded data into the relevant
721 : : * syscaches.
722 : : * ---
723 : : */
724 [ + + ]: 4141 : if (DecodeTXNNeedSkip(ctx, buf, parsed->dbId, origin_id))
725 : : {
726 [ + + ]: 3093 : for (i = 0; i < parsed->nsubxacts; i++)
727 : : {
728 : 1032 : ReorderBufferForget(ctx->reorder, parsed->subxacts[i], buf->origptr);
729 : : }
730 : 2061 : ReorderBufferForget(ctx->reorder, xid, buf->origptr);
731 : :
732 : 2061 : return;
733 : : }
734 : :
735 : : /* tell the reorderbuffer about the surviving subtransactions */
736 [ + + ]: 2349 : for (i = 0; i < parsed->nsubxacts; i++)
737 : : {
738 : 269 : ReorderBufferCommitChild(ctx->reorder, xid, parsed->subxacts[i],
739 : : buf->origptr, buf->endptr);
740 : : }
741 : :
742 : : /*
743 : : * Send the final commit record if the transaction data is already
744 : : * decoded, otherwise, process the entire transaction.
745 : : */
746 [ + + ]: 2080 : if (two_phase)
747 : : {
748 : 35 : ReorderBufferFinishPrepared(ctx->reorder, xid, buf->origptr, buf->endptr,
749 : 35 : SnapBuildGetTwoPhaseAt(ctx->snapshot_builder),
750 : : commit_time, origin_id, origin_lsn,
751 : 35 : parsed->twophase_gid, true);
752 : : }
753 : : else
754 : : {
755 : 2045 : ReorderBufferCommit(ctx->reorder, xid, buf->origptr, buf->endptr,
756 : : commit_time, origin_id, origin_lsn);
757 : : }
758 : :
759 : : /*
760 : : * Update the decoding stats at transaction prepare/commit/abort.
761 : : * Additionally we send the stats when we spill or stream the changes to
762 : : * avoid losing them in case the decoding is interrupted. It is not clear
763 : : * that sending more or less frequently than this would be better.
764 : : */
765 : 2066 : UpdateDecodingStats(ctx);
766 : : }
767 : :
768 : : /*
769 : : * Decode PREPARE record. Similar logic as in DecodeCommit.
770 : : *
771 : : * Note that we don't skip prepare even if have detected concurrent abort
772 : : * because it is quite possible that we had already sent some changes before we
773 : : * detect abort in which case we need to abort those changes in the subscriber.
774 : : * To abort such changes, we do send the prepare and then the rollback prepared
775 : : * which is what happened on the publisher-side as well. Now, we can invent a
776 : : * new abort API wherein in such cases we send abort and skip sending prepared
777 : : * and rollback prepared but then it is not that straightforward because we
778 : : * might have streamed this transaction by that time in which case it is
779 : : * handled when the rollback is encountered. It is not impossible to optimize
780 : : * the concurrent abort case but it can introduce design complexity w.r.t
781 : : * handling different cases so leaving it for now as it doesn't seem worth it.
782 : : */
783 : : static void
784 : 179 : DecodePrepare(LogicalDecodingContext *ctx, XLogRecordBuffer *buf,
785 : : xl_xact_parsed_prepare *parsed)
786 : : {
787 : 179 : SnapBuild *builder = ctx->snapshot_builder;
788 : 179 : XLogRecPtr origin_lsn = parsed->origin_lsn;
789 : 179 : TimestampTz prepare_time = parsed->xact_time;
790 : 179 : ReplOriginId origin_id = XLogRecGetOrigin(buf->record);
791 : : int i;
792 : 179 : TransactionId xid = parsed->twophase_xid;
793 : :
794 [ + + ]: 179 : if (parsed->origin_timestamp != 0)
795 : 8 : prepare_time = parsed->origin_timestamp;
796 : :
797 : : /*
798 : : * Remember the prepare info for a txn so that it can be used later in
799 : : * commit prepared if required. See ReorderBufferFinishPrepared.
800 : : */
801 [ - + ]: 179 : if (!ReorderBufferRememberPrepareInfo(ctx->reorder, xid, buf->origptr,
802 : : buf->endptr, prepare_time, origin_id,
803 : : origin_lsn))
804 : 0 : return;
805 : :
806 : : /* We can't start streaming unless a consistent state is reached. */
807 [ + + ]: 179 : if (SnapBuildCurrentState(builder) < SNAPBUILD_CONSISTENT)
808 : : {
809 : 3 : ReorderBufferSkipPrepare(ctx->reorder, xid);
810 : 3 : return;
811 : : }
812 : :
813 : : /*
814 : : * Check whether we need to process this transaction. See
815 : : * DecodeTXNNeedSkip for the reasons why we sometimes want to skip the
816 : : * transaction.
817 : : *
818 : : * We can't call ReorderBufferForget as we did in DecodeCommit as the txn
819 : : * hasn't yet been committed, removing this txn before a commit might
820 : : * result in the computation of an incorrect restart_lsn. See
821 : : * SnapBuildProcessRunningXacts. But we need to process cache
822 : : * invalidations if there are any for the reasons mentioned in
823 : : * DecodeCommit.
824 : : */
825 [ + + ]: 176 : if (DecodeTXNNeedSkip(ctx, buf, parsed->dbId, origin_id))
826 : : {
827 : 131 : ReorderBufferSkipPrepare(ctx->reorder, xid);
828 : 131 : ReorderBufferInvalidate(ctx->reorder, xid, buf->origptr);
829 : 131 : return;
830 : : }
831 : :
832 : : /* Tell the reorderbuffer about the surviving subtransactions. */
833 [ + + ]: 46 : for (i = 0; i < parsed->nsubxacts; i++)
834 : : {
835 : 1 : ReorderBufferCommitChild(ctx->reorder, xid, parsed->subxacts[i],
836 : : buf->origptr, buf->endptr);
837 : : }
838 : :
839 : : /* replay actions of all transaction + subtransactions in order */
840 : 45 : ReorderBufferPrepare(ctx->reorder, xid, parsed->twophase_gid);
841 : :
842 : : /*
843 : : * Update the decoding stats at transaction prepare/commit/abort.
844 : : * Additionally we send the stats when we spill or stream the changes to
845 : : * avoid losing them in case the decoding is interrupted. It is not clear
846 : : * that sending more or less frequently than this would be better.
847 : : */
848 : 45 : UpdateDecodingStats(ctx);
849 : : }
850 : :
851 : :
852 : : /*
853 : : * Get the data from the various forms of abort records and pass it on to
854 : : * snapbuild.c and reorderbuffer.c.
855 : : *
856 : : * 'two_phase' indicates to finish prepared transaction.
857 : : */
858 : : static void
859 : 253 : DecodeAbort(LogicalDecodingContext *ctx, XLogRecordBuffer *buf,
860 : : xl_xact_parsed_abort *parsed, TransactionId xid,
861 : : bool two_phase)
862 : : {
863 : : int i;
864 : 253 : XLogRecPtr origin_lsn = InvalidXLogRecPtr;
865 : 253 : TimestampTz abort_time = parsed->xact_time;
866 : 253 : ReplOriginId origin_id = XLogRecGetOrigin(buf->record);
867 : : bool skip_xact;
868 : :
869 [ + + ]: 253 : if (parsed->xinfo & XACT_XINFO_HAS_ORIGIN)
870 : : {
871 : 4 : origin_lsn = parsed->origin_lsn;
872 : 4 : abort_time = parsed->origin_timestamp;
873 : : }
874 : :
875 : : /*
876 : : * Check whether we need to process this transaction. See
877 : : * DecodeTXNNeedSkip for the reasons why we sometimes want to skip the
878 : : * transaction.
879 : : */
880 : 253 : skip_xact = DecodeTXNNeedSkip(ctx, buf, parsed->dbId, origin_id);
881 : :
882 : : /*
883 : : * Send the final rollback record for a prepared transaction unless we
884 : : * need to skip it. For non-two-phase xacts, simply forget the xact.
885 : : */
886 [ + + + + ]: 253 : if (two_phase && !skip_xact)
887 : : {
888 : 12 : ReorderBufferFinishPrepared(ctx->reorder, xid, buf->origptr, buf->endptr,
889 : : InvalidXLogRecPtr,
890 : : abort_time, origin_id, origin_lsn,
891 : 12 : parsed->twophase_gid, false);
892 : : }
893 : : else
894 : : {
895 [ + + ]: 248 : for (i = 0; i < parsed->nsubxacts; i++)
896 : : {
897 : 7 : ReorderBufferAbort(ctx->reorder, parsed->subxacts[i],
898 : 7 : buf->record->EndRecPtr, abort_time);
899 : : }
900 : :
901 : 241 : ReorderBufferAbort(ctx->reorder, xid, buf->record->EndRecPtr,
902 : : abort_time);
903 : : }
904 : :
905 : : /* update the decoding stats */
906 : 253 : UpdateDecodingStats(ctx);
907 : 253 : }
908 : :
909 : : /*
910 : : * Parse XLOG_HEAP_INSERT (not MULTI_INSERT!) records into tuplebufs.
911 : : *
912 : : * Inserts can contain the new tuple.
913 : : */
914 : : static void
915 : 915778 : DecodeInsert(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
916 : : {
917 : : Size datalen;
918 : : char *tupledata;
919 : : Size tuplelen;
920 : 915778 : XLogReaderState *r = buf->record;
921 : : xl_heap_insert *xlrec;
922 : : ReorderBufferChange *change;
923 : : RelFileLocator target_locator;
924 : :
925 : 915778 : xlrec = (xl_heap_insert *) XLogRecGetData(r);
926 : :
927 : : /*
928 : : * Ignore insert records without new tuples (this does happen when
929 : : * raw_heap_insert marks the TOAST record as HEAP_INSERT_NO_LOGICAL).
930 : : */
931 [ + + ]: 915778 : if (!(xlrec->flags & XLH_INSERT_CONTAINS_NEW_TUPLE))
932 : 5074 : return;
933 : :
934 : : /* only interested in our database */
935 : 910847 : XLogRecGetBlockTag(r, 0, &target_locator, NULL, NULL);
936 [ - + ]: 910847 : if (target_locator.dbOid != ctx->slot->data.database)
937 : 0 : return;
938 : :
939 : : /* output plugin doesn't look for this origin, no need to queue */
940 [ + + ]: 910847 : if (FilterByOrigin(ctx, XLogRecGetOrigin(r)))
941 : 143 : return;
942 : :
943 : 910704 : change = ReorderBufferAllocChange(ctx->reorder);
944 [ + + ]: 910704 : if (!(xlrec->flags & XLH_INSERT_IS_SPECULATIVE))
945 : 890954 : change->action = REORDER_BUFFER_CHANGE_INSERT;
946 : : else
947 : 19750 : change->action = REORDER_BUFFER_CHANGE_INTERNAL_SPEC_INSERT;
948 : 910704 : change->origin_id = XLogRecGetOrigin(r);
949 : :
950 : 910704 : memcpy(&change->data.tp.rlocator, &target_locator, sizeof(RelFileLocator));
951 : :
952 : 910704 : tupledata = XLogRecGetBlockData(r, 0, &datalen);
953 : 910704 : tuplelen = datalen - SizeOfHeapHeader;
954 : :
955 : 910704 : change->data.tp.newtuple =
956 : 910704 : ReorderBufferAllocTupleBuf(ctx->reorder, tuplelen);
957 : :
958 : 910704 : DecodeXLogTuple(tupledata, datalen, change->data.tp.newtuple);
959 : :
960 : 910704 : change->data.tp.clear_toast_afterwards = true;
961 : :
962 : 910704 : ReorderBufferQueueChange(ctx->reorder, XLogRecGetXid(r), buf->origptr,
963 : : change,
964 : 910704 : xlrec->flags & XLH_INSERT_ON_TOAST_RELATION);
965 : : }
966 : :
967 : : /*
968 : : * Parse XLOG_HEAP_UPDATE and XLOG_HEAP_HOT_UPDATE, which have the same layout
969 : : * in the record, from wal into proper tuplebufs.
970 : : *
971 : : * Updates can possibly contain a new tuple and the old primary key.
972 : : */
973 : : static void
974 : 162026 : DecodeUpdate(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
975 : : {
976 : 162026 : XLogReaderState *r = buf->record;
977 : : xl_heap_update *xlrec;
978 : : ReorderBufferChange *change;
979 : : char *data;
980 : : RelFileLocator target_locator;
981 : :
982 : 162026 : xlrec = (xl_heap_update *) XLogRecGetData(r);
983 : :
984 : : /*
985 : : * Ignore update records without a new tuple. This happens when the update
986 : : * is done on a catalog relation, or when the caller of heap_update()
987 : : * asked for the change not to be decoded, as REPACK (CONCURRENTLY) does
988 : : * for the transient heap.
989 : : */
990 [ + + ]: 162026 : if (!(xlrec->flags & XLH_UPDATE_CONTAINS_NEW_TUPLE))
991 : 2251 : return;
992 : :
993 : : /* only interested in our database */
994 : 159777 : XLogRecGetBlockTag(r, 0, &target_locator, NULL, NULL);
995 [ - + ]: 159777 : if (target_locator.dbOid != ctx->slot->data.database)
996 : 0 : return;
997 : :
998 : : /* output plugin doesn't look for this origin, no need to queue */
999 [ + + ]: 159777 : if (FilterByOrigin(ctx, XLogRecGetOrigin(r)))
1000 : 2 : return;
1001 : :
1002 : 159775 : change = ReorderBufferAllocChange(ctx->reorder);
1003 : 159775 : change->action = REORDER_BUFFER_CHANGE_UPDATE;
1004 : 159775 : change->origin_id = XLogRecGetOrigin(r);
1005 : 159775 : memcpy(&change->data.tp.rlocator, &target_locator, sizeof(RelFileLocator));
1006 : :
1007 [ + - ]: 159775 : if (xlrec->flags & XLH_UPDATE_CONTAINS_NEW_TUPLE)
1008 : : {
1009 : : Size datalen;
1010 : : Size tuplelen;
1011 : :
1012 : 159775 : data = XLogRecGetBlockData(r, 0, &datalen);
1013 : :
1014 : 159775 : tuplelen = datalen - SizeOfHeapHeader;
1015 : :
1016 : 159775 : change->data.tp.newtuple =
1017 : 159775 : ReorderBufferAllocTupleBuf(ctx->reorder, tuplelen);
1018 : :
1019 : 159775 : DecodeXLogTuple(data, datalen, change->data.tp.newtuple);
1020 : : }
1021 : :
1022 [ + + ]: 159775 : if (xlrec->flags & XLH_UPDATE_CONTAINS_OLD)
1023 : : {
1024 : : Size datalen;
1025 : : Size tuplelen;
1026 : :
1027 : : /* caution, remaining data in record is not aligned */
1028 : 359 : data = XLogRecGetData(r) + SizeOfHeapUpdate;
1029 : 359 : datalen = XLogRecGetDataLen(r) - SizeOfHeapUpdate;
1030 : 359 : tuplelen = datalen - SizeOfHeapHeader;
1031 : :
1032 : 359 : change->data.tp.oldtuple =
1033 : 359 : ReorderBufferAllocTupleBuf(ctx->reorder, tuplelen);
1034 : :
1035 : 359 : DecodeXLogTuple(data, datalen, change->data.tp.oldtuple);
1036 : : }
1037 : :
1038 : 159775 : change->data.tp.clear_toast_afterwards = true;
1039 : :
1040 : 159775 : ReorderBufferQueueChange(ctx->reorder, XLogRecGetXid(r), buf->origptr,
1041 : : change, false);
1042 : : }
1043 : :
1044 : : /*
1045 : : * Parse XLOG_HEAP_DELETE from wal into proper tuplebufs.
1046 : : *
1047 : : * Deletes can possibly contain the old primary key.
1048 : : */
1049 : : static void
1050 : 238507 : DecodeDelete(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
1051 : : {
1052 : 238507 : XLogReaderState *r = buf->record;
1053 : : xl_heap_delete *xlrec;
1054 : : ReorderBufferChange *change;
1055 : : RelFileLocator target_locator;
1056 : :
1057 : 238507 : xlrec = (xl_heap_delete *) XLogRecGetData(r);
1058 : :
1059 : : /*
1060 : : * Skip changes that were marked as ignorable at origin.
1061 : : *
1062 : : * (This is used for changes that affect relations not visible to other
1063 : : * transactions, such as the transient table during concurrent repack.)
1064 : : */
1065 [ - + ]: 238507 : if (xlrec->flags & XLH_DELETE_NO_LOGICAL)
1066 : 66 : return;
1067 : :
1068 : : /* only interested in our database */
1069 : 238507 : XLogRecGetBlockTag(r, 0, &target_locator, NULL, NULL);
1070 [ + + ]: 238507 : if (target_locator.dbOid != ctx->slot->data.database)
1071 : 48 : return;
1072 : :
1073 : : /* output plugin doesn't look for this origin, no need to queue */
1074 [ + + ]: 238459 : if (FilterByOrigin(ctx, XLogRecGetOrigin(r)))
1075 : 18 : return;
1076 : :
1077 : 238441 : change = ReorderBufferAllocChange(ctx->reorder);
1078 : :
1079 [ - + ]: 238441 : if (xlrec->flags & XLH_DELETE_IS_SUPER)
1080 : 0 : change->action = REORDER_BUFFER_CHANGE_INTERNAL_SPEC_ABORT;
1081 : : else
1082 : 238441 : change->action = REORDER_BUFFER_CHANGE_DELETE;
1083 : :
1084 : 238441 : change->origin_id = XLogRecGetOrigin(r);
1085 : :
1086 : 238441 : memcpy(&change->data.tp.rlocator, &target_locator, sizeof(RelFileLocator));
1087 : :
1088 : : /* old primary key stored */
1089 [ + + ]: 238441 : if (xlrec->flags & XLH_DELETE_CONTAINS_OLD)
1090 : : {
1091 : 170870 : Size datalen = XLogRecGetDataLen(r) - SizeOfHeapDelete;
1092 : 170870 : Size tuplelen = datalen - SizeOfHeapHeader;
1093 : :
1094 : : Assert(XLogRecGetDataLen(r) > (SizeOfHeapDelete + SizeOfHeapHeader));
1095 : :
1096 : 170870 : change->data.tp.oldtuple =
1097 : 170870 : ReorderBufferAllocTupleBuf(ctx->reorder, tuplelen);
1098 : :
1099 : 170870 : DecodeXLogTuple((char *) xlrec + SizeOfHeapDelete,
1100 : : datalen, change->data.tp.oldtuple);
1101 : : }
1102 : :
1103 : 238441 : change->data.tp.clear_toast_afterwards = true;
1104 : :
1105 : 238441 : ReorderBufferQueueChange(ctx->reorder, XLogRecGetXid(r), buf->origptr,
1106 : : change, false);
1107 : : }
1108 : :
1109 : : /*
1110 : : * Parse XLOG_HEAP_TRUNCATE from wal
1111 : : */
1112 : : static void
1113 : 63 : DecodeTruncate(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
1114 : : {
1115 : 63 : XLogReaderState *r = buf->record;
1116 : : xl_heap_truncate *xlrec;
1117 : : ReorderBufferChange *change;
1118 : :
1119 : 63 : xlrec = (xl_heap_truncate *) XLogRecGetData(r);
1120 : :
1121 : : /* only interested in our database */
1122 [ - + ]: 63 : if (xlrec->dbId != ctx->slot->data.database)
1123 : 0 : return;
1124 : :
1125 : : /* output plugin doesn't look for this origin, no need to queue */
1126 [ + + ]: 63 : if (FilterByOrigin(ctx, XLogRecGetOrigin(r)))
1127 : 1 : return;
1128 : :
1129 : 62 : change = ReorderBufferAllocChange(ctx->reorder);
1130 : 62 : change->action = REORDER_BUFFER_CHANGE_TRUNCATE;
1131 : 62 : change->origin_id = XLogRecGetOrigin(r);
1132 [ + + ]: 62 : if (xlrec->flags & XLH_TRUNCATE_CASCADE)
1133 : 1 : change->data.truncate.cascade = true;
1134 [ + + ]: 62 : if (xlrec->flags & XLH_TRUNCATE_RESTART_SEQS)
1135 : 2 : change->data.truncate.restart_seqs = true;
1136 : 62 : change->data.truncate.nrelids = xlrec->nrelids;
1137 : 124 : change->data.truncate.relids = ReorderBufferAllocRelids(ctx->reorder,
1138 : 62 : xlrec->nrelids);
1139 : 62 : memcpy(change->data.truncate.relids, xlrec->relids,
1140 : 62 : xlrec->nrelids * sizeof(Oid));
1141 : 62 : ReorderBufferQueueChange(ctx->reorder, XLogRecGetXid(r),
1142 : : buf->origptr, change, false);
1143 : : }
1144 : :
1145 : : /*
1146 : : * Decode XLOG_HEAP2_MULTI_INSERT record into multiple tuplebufs.
1147 : : *
1148 : : * Currently MULTI_INSERT will always contain the full tuples.
1149 : : */
1150 : : static void
1151 : 7277 : DecodeMultiInsert(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
1152 : : {
1153 : 7277 : XLogReaderState *r = buf->record;
1154 : : xl_heap_multi_insert *xlrec;
1155 : : int i;
1156 : : char *data;
1157 : : char *tupledata;
1158 : : Size tuplelen;
1159 : : RelFileLocator rlocator;
1160 : :
1161 : 7277 : xlrec = (xl_heap_multi_insert *) XLogRecGetData(r);
1162 : :
1163 : : /*
1164 : : * Ignore insert records without new tuples. This happens when a
1165 : : * multi_insert is done on a catalog or on a non-persistent relation.
1166 : : */
1167 [ + + ]: 7277 : if (!(xlrec->flags & XLH_INSERT_CONTAINS_NEW_TUPLE))
1168 : 7261 : return;
1169 : :
1170 : : /* only interested in our database */
1171 : 55 : XLogRecGetBlockTag(r, 0, &rlocator, NULL, NULL);
1172 [ + + ]: 55 : if (rlocator.dbOid != ctx->slot->data.database)
1173 : 39 : return;
1174 : :
1175 : : /* output plugin doesn't look for this origin, no need to queue */
1176 [ - + ]: 16 : if (FilterByOrigin(ctx, XLogRecGetOrigin(r)))
1177 : 0 : return;
1178 : :
1179 : : /*
1180 : : * We know that this multi_insert isn't for a catalog, so the block should
1181 : : * always have data even if a full-page write of it is taken.
1182 : : */
1183 : 16 : tupledata = XLogRecGetBlockData(r, 0, &tuplelen);
1184 : : Assert(tupledata != NULL);
1185 : :
1186 : 16 : data = tupledata;
1187 [ + + ]: 1067 : for (i = 0; i < xlrec->ntuples; i++)
1188 : : {
1189 : : ReorderBufferChange *change;
1190 : : xl_multi_insert_tuple *xlhdr;
1191 : : int datalen;
1192 : : HeapTuple tuple;
1193 : : HeapTupleHeader header;
1194 : :
1195 : 1051 : change = ReorderBufferAllocChange(ctx->reorder);
1196 : 1051 : change->action = REORDER_BUFFER_CHANGE_INSERT;
1197 : 1051 : change->origin_id = XLogRecGetOrigin(r);
1198 : :
1199 : 1051 : memcpy(&change->data.tp.rlocator, &rlocator, sizeof(RelFileLocator));
1200 : :
1201 : 1051 : xlhdr = (xl_multi_insert_tuple *) SHORTALIGN(data);
1202 : 1051 : data = ((char *) xlhdr) + SizeOfMultiInsertTuple;
1203 : 1051 : datalen = xlhdr->datalen;
1204 : :
1205 : 1051 : change->data.tp.newtuple =
1206 : 1051 : ReorderBufferAllocTupleBuf(ctx->reorder, datalen);
1207 : :
1208 : 1051 : tuple = change->data.tp.newtuple;
1209 : 1051 : header = tuple->t_data;
1210 : :
1211 : : /* not a disk based tuple */
1212 : 1051 : ItemPointerSetInvalid(&tuple->t_self);
1213 : :
1214 : : /*
1215 : : * We can only figure this out after reassembling the transactions.
1216 : : */
1217 : 1051 : tuple->t_tableOid = InvalidOid;
1218 : :
1219 : 1051 : tuple->t_len = datalen + SizeofHeapTupleHeader;
1220 : :
1221 : 1051 : memset(header, 0, SizeofHeapTupleHeader);
1222 : :
1223 : 1051 : memcpy((char *) tuple->t_data + SizeofHeapTupleHeader, data, datalen);
1224 : 1051 : header->t_infomask = xlhdr->t_infomask;
1225 : 1051 : header->t_infomask2 = xlhdr->t_infomask2;
1226 : 1051 : header->t_hoff = xlhdr->t_hoff;
1227 : :
1228 : : /*
1229 : : * Reset toast reassembly state only after the last row in the last
1230 : : * xl_multi_insert_tuple record emitted by one heap_multi_insert()
1231 : : * call.
1232 : : */
1233 [ + + ]: 1051 : if (xlrec->flags & XLH_INSERT_LAST_IN_MULTI &&
1234 [ + + ]: 191 : (i + 1) == xlrec->ntuples)
1235 : 11 : change->data.tp.clear_toast_afterwards = true;
1236 : : else
1237 : 1040 : change->data.tp.clear_toast_afterwards = false;
1238 : :
1239 : 1051 : ReorderBufferQueueChange(ctx->reorder, XLogRecGetXid(r),
1240 : : buf->origptr, change, false);
1241 : :
1242 : : /* move to the next xl_multi_insert_tuple entry */
1243 : 1051 : data += datalen;
1244 : : }
1245 : : Assert(data == tupledata + tuplelen);
1246 : : }
1247 : :
1248 : : /*
1249 : : * Parse XLOG_HEAP_CONFIRM from wal into a confirmation change.
1250 : : *
1251 : : * This is pretty trivial, all the state essentially already setup by the
1252 : : * speculative insertion.
1253 : : */
1254 : : static void
1255 : 19750 : DecodeSpecConfirm(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
1256 : : {
1257 : 19750 : XLogReaderState *r = buf->record;
1258 : : ReorderBufferChange *change;
1259 : : RelFileLocator target_locator;
1260 : :
1261 : : /* only interested in our database */
1262 : 19750 : XLogRecGetBlockTag(r, 0, &target_locator, NULL, NULL);
1263 [ - + ]: 19750 : if (target_locator.dbOid != ctx->slot->data.database)
1264 : 0 : return;
1265 : :
1266 : : /* output plugin doesn't look for this origin, no need to queue */
1267 [ - + ]: 19750 : if (FilterByOrigin(ctx, XLogRecGetOrigin(r)))
1268 : 0 : return;
1269 : :
1270 : 19750 : change = ReorderBufferAllocChange(ctx->reorder);
1271 : 19750 : change->action = REORDER_BUFFER_CHANGE_INTERNAL_SPEC_CONFIRM;
1272 : 19750 : change->origin_id = XLogRecGetOrigin(r);
1273 : :
1274 : 19750 : memcpy(&change->data.tp.rlocator, &target_locator, sizeof(RelFileLocator));
1275 : :
1276 : 19750 : change->data.tp.clear_toast_afterwards = true;
1277 : :
1278 : 19750 : ReorderBufferQueueChange(ctx->reorder, XLogRecGetXid(r), buf->origptr,
1279 : : change, false);
1280 : : }
1281 : :
1282 : :
1283 : : /*
1284 : : * Read a HeapTuple as WAL logged by heap_insert, heap_update and heap_delete
1285 : : * (but not by heap_multi_insert) into a tuplebuf.
1286 : : *
1287 : : * The size 'len' and the pointer 'data' in the record need to be
1288 : : * computed outside as they are record specific.
1289 : : */
1290 : : static void
1291 : 1241708 : DecodeXLogTuple(char *data, Size len, HeapTuple tuple)
1292 : : {
1293 : : xl_heap_header xlhdr;
1294 : 1241708 : int datalen = len - SizeOfHeapHeader;
1295 : : HeapTupleHeader header;
1296 : :
1297 : : Assert(datalen >= 0);
1298 : :
1299 : 1241708 : tuple->t_len = datalen + SizeofHeapTupleHeader;
1300 : 1241708 : header = tuple->t_data;
1301 : :
1302 : : /* not a disk based tuple */
1303 : 1241708 : ItemPointerSetInvalid(&tuple->t_self);
1304 : :
1305 : : /* we can only figure this out after reassembling the transactions */
1306 : 1241708 : tuple->t_tableOid = InvalidOid;
1307 : :
1308 : : /* data is not stored aligned, copy to aligned storage */
1309 : 1241708 : memcpy(&xlhdr, data, SizeOfHeapHeader);
1310 : :
1311 : 1241708 : memset(header, 0, SizeofHeapTupleHeader);
1312 : :
1313 : 1241708 : memcpy(((char *) tuple->t_data) + SizeofHeapTupleHeader,
1314 : 1241708 : data + SizeOfHeapHeader,
1315 : : datalen);
1316 : :
1317 : 1241708 : header->t_infomask = xlhdr.t_infomask;
1318 : 1241708 : header->t_infomask2 = xlhdr.t_infomask2;
1319 : 1241708 : header->t_hoff = xlhdr.t_hoff;
1320 : 1241708 : }
1321 : :
1322 : : /*
1323 : : * Check whether we are interested in this specific transaction.
1324 : : *
1325 : : * There can be several reasons we might not be interested in this
1326 : : * transaction:
1327 : : * 1) We might not be interested in decoding transactions up to this
1328 : : * LSN. This can happen because we previously decoded it and now just
1329 : : * are restarting or if we haven't assembled a consistent snapshot yet.
1330 : : * 2) The transaction happened in another database.
1331 : : * 3) The output plugin is not interested in the origin.
1332 : : * 4) We are doing fast-forwarding
1333 : : */
1334 : : static bool
1335 : 4570 : DecodeTXNNeedSkip(LogicalDecodingContext *ctx, XLogRecordBuffer *buf,
1336 : : Oid txn_dbid, ReplOriginId origin_id)
1337 : : {
1338 [ + + + + ]: 4570 : if (SnapBuildXactNeedsSkip(ctx->snapshot_builder, buf->origptr) ||
1339 [ + + + + ]: 4532 : (txn_dbid != InvalidOid && txn_dbid != ctx->slot->data.database) ||
1340 : 2290 : FilterByOrigin(ctx, origin_id))
1341 : 2316 : return true;
1342 : :
1343 : : /*
1344 : : * We also skip decoding in fast_forward mode. In passing set the
1345 : : * processing_required flag to indicate that if it were not for
1346 : : * fast_forward mode, processing would have been required.
1347 : : */
1348 [ + + ]: 2254 : if (ctx->fast_forward)
1349 : : {
1350 : 39 : ctx->processing_required = true;
1351 : 39 : return true;
1352 : : }
1353 : :
1354 : 2215 : return false;
1355 : : }
|