pg_ripple_http 0.103.0

SPARQL 1.1 Protocol HTTP endpoint for pg_ripple — connects PostgreSQL 18 RDF triple store to the web
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
//! Arrow Flight bulk-export endpoint (FLIGHT-02, v0.66.0).
//!
//! Exposes `POST /flight/do_get` which returns results of a SPARQL SELECT
//! query as an Arrow IPC stream (application/vnd.apache.arrow.stream).

use std::sync::Arc;

use axum::body::Body;
use axum::extract::State;
use axum::http::{HeaderMap, StatusCode};
use axum::response::Response;

use crate::common::{AppState, check_auth, redacted_error};
use crate::routing::json_response_http;

// ─── v0.66.0: Arrow Flight bulk-export endpoint (FLIGHT-02) ──────────────────

/// Validate an Arrow Flight v2 ticket.
///
/// Returns `Ok(graph_id)` when the ticket is valid, `Err(reason)` otherwise.
fn validate_flight_ticket(
    ticket: &serde_json::Value,
    secret: Option<&str>,
    now_secs: u64,
    allow_unsigned: bool,
) -> Result<i64, String> {
    use hmac::{Hmac, KeyInit, Mac};
    use sha2::Sha256;
    type HmacSha256 = Hmac<Sha256>;

    let ticket_type = ticket["type"].as_str().unwrap_or("");
    if ticket_type != "arrow_flight_v2" {
        return Err(format!("unexpected ticket type: {ticket_type}"));
    }
    let aud = ticket["aud"].as_str().unwrap_or("");
    if aud != "pg_ripple_http" {
        return Err(format!("unexpected audience: {aud}"));
    }
    let exp = ticket["exp"].as_u64().unwrap_or(0);
    if exp < now_secs {
        return Err("ticket has expired".to_owned());
    }

    let sig = ticket["sig"].as_str().unwrap_or("unsigned");
    if sig == "unsigned" {
        // FLIGHT-SEC-01: reject unsigned tickets unless explicitly allowed.
        if !allow_unsigned {
            return Err(
                "unsigned Arrow Flight ticket rejected — set ARROW_UNSIGNED_TICKETS_ALLOWED=true \
                 for local development or configure a signing secret"
                    .to_owned(),
            );
        }
        // allow_unsigned = true: skip HMAC verification for local development.
    } else {
        let secret = match secret {
            Some(s) if !s.is_empty() => s,
            _ => return Err("server has no ARROW_FLIGHT_SECRET configured".to_owned()),
        };
        let iat = ticket["iat"].as_u64().unwrap_or(0);
        let graph_iri = ticket["graph_iri"].as_str().unwrap_or("");
        let graph_id_v = ticket["graph_id"].as_i64().unwrap_or(0);
        let nonce = ticket["nonce"].as_str().unwrap_or("");
        let canonical = format!(
            "aud=pg_ripple_http,exp={exp},graph_id={graph_id_v},graph_iri={graph_iri},iat={iat},nonce={nonce},type=arrow_flight_v2"
        );
        let mut mac = HmacSha256::new_from_slice(secret.as_bytes())
            .map_err(|e| format!("HMAC key error: {e}"))?;
        mac.update(canonical.as_bytes());
        let result = mac.finalize();
        let expected = hex::encode(result.into_bytes());
        if !constant_time_eq::constant_time_eq(expected.as_bytes(), sig.as_bytes()) {
            return Err("invalid ticket signature".to_owned());
        }
    }

    Ok(ticket["graph_id"].as_i64().unwrap_or(0))
}

/// Arrow Flight do_get endpoint: stream VP rows as Arrow IPC record batches.
///
/// Accepts a JSON Flight ticket (as produced by `pg_ripple.export_arrow_flight()`)
/// in the request body, validates the HMAC-SHA256 signature, and streams the
/// named graph's triples as a binary Arrow IPC stream.
///
/// Response content-type: `application/vnd.apache.arrow.stream`
/// Schema: `s Int64, p Int64, o Int64, g Int64` (dictionary-encoded integers).
pub(crate) async fn flight_do_get(
    State(state): State<Arc<AppState>>,
    headers: HeaderMap,
    body: Body,
) -> Response {
    use arrow::array::Int64Array;
    use arrow::datatypes::{DataType, Field, Schema};
    use arrow::ipc::writer::StreamWriter;
    use arrow::record_batch::RecordBatch;
    use std::sync::Arc as StdArc;
    use std::time::{SystemTime, UNIX_EPOCH};

    if let Err(resp) = check_auth(&state, &headers) {
        return resp;
    }

    let body_bytes = match axum::body::to_bytes(body, 1024 * 1024).await {
        Ok(b) => b,
        Err(e) => {
            return json_response_http(
                StatusCode::BAD_REQUEST,
                serde_json::json!({"error": format!("failed to read ticket body: {e}")}),
            );
        }
    };

    let ticket: serde_json::Value = match serde_json::from_slice(&body_bytes) {
        Ok(t) => t,
        Err(e) => {
            return json_response_http(
                StatusCode::BAD_REQUEST,
                serde_json::json!({"error": format!("invalid Flight ticket: {e}")}),
            );
        }
    };

    let now_secs = SystemTime::now()
        .duration_since(UNIX_EPOCH)
        .unwrap_or_default()
        .as_secs();

    let graph_id = match validate_flight_ticket(
        &ticket,
        state.arrow_flight_secret.as_deref(),
        now_secs,
        state.arrow_unsigned_tickets_allowed,
    ) {
        Ok(id) => id,
        Err(reason) => {
            tracing::warn!("Arrow Flight ticket rejected: {reason}");
            state.metrics.record_arrow_ticket_rejection();
            return json_response_http(
                StatusCode::UNAUTHORIZED,
                serde_json::json!({"error": "invalid ticket", "reason": reason}),
            );
        }
    };

    // FLIGHT-NONCE-01 (v0.72.0): replay protection — reject reused nonces.
    {
        use std::time::Instant;
        let nonce = ticket["nonce"].as_str().unwrap_or("").to_owned();
        let expiry_secs = ticket["exp"].as_u64().unwrap_or(0).saturating_sub(now_secs);
        if !nonce.is_empty() {
            // Lazy eviction: remove expired entries to keep cache bounded.
            if state.arrow_nonce_cache.len() > state.arrow_nonce_cache_max {
                let now_instant = Instant::now();
                state
                    .arrow_nonce_cache
                    .retain(|_, (accepted_at, exp)| accepted_at.elapsed().as_secs() < *exp);
                let _ = now_instant; // suppress unused warning
            }
            // Check for replay.
            if let Some(entry) = state.arrow_nonce_cache.get(&nonce) {
                let (accepted_at, exp) = entry.value();
                if accepted_at.elapsed().as_secs() < *exp {
                    tracing::warn!(nonce = %nonce, "Arrow Flight ticket nonce replayed");
                    state.metrics.record_arrow_ticket_rejection();
                    return json_response_http(
                        StatusCode::UNAUTHORIZED,
                        serde_json::json!({"error": "invalid ticket", "reason": "nonce already used"}),
                    );
                }
            }
            // Record this nonce as seen.
            state
                .arrow_nonce_cache
                .insert(nonce, (Instant::now(), expiry_secs));
        }
    }

    let client = match state.pool.get().await {
        Ok(c) => c,
        Err(e) => {
            return redacted_error(
                "flight_do_get pool",
                &e.to_string(),
                StatusCode::INTERNAL_SERVER_ERROR,
            );
        }
    };

    // FLIGHT-SEC-02: Query all non-rare VP tables + vp_rare for the graph
    // using tombstone-exclusion read semantics:
    //   (main EXCEPT tombstones) UNION ALL delta
    // This matches the SPARQL read path and excludes tombstoned rows.
    let pred_rows = match client
        .query(
            "SELECT id FROM _pg_ripple.predicates WHERE table_oid IS NOT NULL ORDER BY id",
            &[],
        )
        .await
    {
        Ok(r) => r,
        Err(e) => {
            return redacted_error(
                "flight_do_get predicates",
                &e.to_string(),
                StatusCode::INTERNAL_SERVER_ERROR,
            );
        }
    };

    let graph_filter = format!("g = {graph_id}");
    let mut union_parts: Vec<String> = pred_rows
        .iter()
        .map(|r| {
            let pred_id: i64 = r.get(0);
            // (main EXCEPT tombstones) UNION ALL delta — tombstone-exclusion read semantics.
            format!(
                "SELECT {pred_id} AS p, s, o, g FROM _pg_ripple.vp_{pred_id}_main \
                 WHERE {graph_filter} AND i NOT IN (SELECT i FROM _pg_ripple.vp_{pred_id}_tombstones WHERE {graph_filter}) \
                 UNION ALL \
                 SELECT {pred_id} AS p, s, o, g FROM _pg_ripple.vp_{pred_id}_delta WHERE {graph_filter}"
            )
        })
        .collect();
    // Always include vp_rare (rare predicates have no tombstone tables; they use direct delete).
    union_parts.push(format!(
        "SELECT p, s, o, g FROM _pg_ripple.vp_rare WHERE {graph_filter}"
    ));

    let full_sql = union_parts.join(" UNION ALL ");

    // FLIGHT-SEC-02: stream in batches instead of materialising the full result.
    // batch_size defaults to 1000 rows; configurable via pg_ripple.arrow_batch_size GUC.
    // Since we're in the HTTP service (no PG GUC access), we use a fixed default of 1000
    // and expose a future env override.
    let batch_size: usize = std::env::var("ARROW_BATCH_SIZE")
        .ok()
        .and_then(|v| v.parse().ok())
        .unwrap_or(1000)
        .max(1);

    // S13-08 (v0.86.0): enforce row export limit BEFORE materialising the full result.
    // HTTP-04 (v0.91.0): replace expensive COUNT(*) with a planner row estimate via
    // EXPLAIN (FORMAT JSON, ANALYZE FALSE). The planner estimate is available in
    // microseconds for large queries where COUNT(*) would be a full scan. Falls back
    // to COUNT(*) if EXPLAIN parsing fails.
    let max_export_rows: usize = std::env::var("ARROW_MAX_EXPORT_ROWS")
        .ok()
        .and_then(|v| v.parse().ok())
        .unwrap_or(10_000_000)
        .max(1);

    // HTTP-04: attempt planner estimate first.
    // M15-22 (v0.96.0): EXPLAIN (FORMAT JSON) is the sole row-estimate mechanism.
    // The COUNT(*) fallback is removed — if EXPLAIN fails, skip the row-count guard
    // rather than paying the full scan cost.
    let row_count_check: Option<i64> = {
        let explain_sql = format!(
            "EXPLAIN (FORMAT JSON, ANALYZE FALSE) SELECT * FROM ({full_sql}) _arrow_count_ LIMIT 1"
        );
        match client.query_one(&explain_sql, &[]).await {
            Ok(r) => {
                let json_str: String = r.try_get::<_, String>(0).unwrap_or_default();
                let estimate = extract_plan_rows_from_explain(&json_str);
                if estimate.is_none() {
                    tracing::warn!(
                        "Arrow Flight EXPLAIN pre-check: could not extract row estimate from plan JSON; skipping row-count guard"
                    );
                }
                estimate
            }
            Err(e) => {
                tracing::warn!(
                    "Arrow Flight EXPLAIN pre-check failed; skipping row-count guard: {e}"
                );
                None
            }
        }
    };
    // S13-08 (v0.86.0): pre-materialisation row count guard.
    if let Some(count) = row_count_check
        && count as usize > max_export_rows
    {
        tracing::warn!(
            graph_id = %graph_id,
            row_count = %count,
            limit = %max_export_rows,
            "Arrow Flight export denied: result exceeds max_export_rows"
        );
        return json_response_http(
            StatusCode::PAYLOAD_TOO_LARGE,
            serde_json::json!({
                "error": "PT413",
                "message": "Arrow Flight export result is too large; \
                            use a more selective query or increase ARROW_MAX_EXPORT_ROWS"
            }),
        );
    }

    let rows = match client.query(&full_sql, &[]).await {
        Ok(r) => r,
        Err(e) => {
            return redacted_error(
                "flight_do_get query",
                &e.to_string(),
                StatusCode::INTERNAL_SERVER_ERROR,
            );
        }
    };

    // Secondary row-count guard (post-materialisation, in case COUNT was skipped above).
    if rows.len() > max_export_rows {
        // S13-08: log actual count server-side; return generic 413 to client.
        tracing::warn!(
            graph_id = %graph_id,
            row_count = %rows.len(),
            limit = %max_export_rows,
            "Arrow Flight export denied post-materialisation: result exceeds max_export_rows"
        );
        return json_response_http(
            StatusCode::PAYLOAD_TOO_LARGE,
            serde_json::json!({
                "error": "PT413",
                "message": "Arrow Flight export result is too large; \
                            use a more selective query or increase ARROW_MAX_EXPORT_ROWS"
            }),
        );
    }

    // Build Arrow IPC stream with multiple record batches (one per `batch_size` rows).
    let schema = Schema::new(vec![
        Field::new("s", DataType::Int64, false),
        Field::new("p", DataType::Int64, false),
        Field::new("o", DataType::Int64, false),
        Field::new("g", DataType::Int64, false),
    ]);
    let schema_ref = StdArc::new(schema);

    let mut buf: Vec<u8> = Vec::new();
    let mut writer = match StreamWriter::try_new(&mut buf, &schema_ref) {
        Ok(w) => w,
        Err(e) => {
            return redacted_error(
                "flight_do_get ipc_writer",
                &e.to_string(),
                StatusCode::INTERNAL_SERVER_ERROR,
            );
        }
    };

    let total_rows = rows.len();
    let mut batches_sent: u64 = 0;

    for chunk in rows.chunks(batch_size) {
        let mut s_vals: Vec<i64> = Vec::with_capacity(chunk.len());
        let mut p_vals: Vec<i64> = Vec::with_capacity(chunk.len());
        let mut o_vals: Vec<i64> = Vec::with_capacity(chunk.len());
        let mut g_vals: Vec<i64> = Vec::with_capacity(chunk.len());
        for row in chunk {
            s_vals.push(row.get::<_, i64>(1));
            p_vals.push(row.get::<_, i64>(0));
            o_vals.push(row.get::<_, i64>(2));
            g_vals.push(row.get::<_, i64>(3));
        }
        let batch = match RecordBatch::try_new(
            StdArc::clone(&schema_ref),
            vec![
                StdArc::new(Int64Array::from(s_vals)),
                StdArc::new(Int64Array::from(p_vals)),
                StdArc::new(Int64Array::from(o_vals)),
                StdArc::new(Int64Array::from(g_vals)),
            ],
        ) {
            Ok(b) => b,
            Err(e) => {
                return redacted_error(
                    "flight_do_get batch",
                    &e.to_string(),
                    StatusCode::INTERNAL_SERVER_ERROR,
                );
            }
        };
        if let Err(e) = writer.write(&batch) {
            return redacted_error(
                "flight_do_get ipc_write",
                &e.to_string(),
                StatusCode::INTERNAL_SERVER_ERROR,
            );
        }
        batches_sent += 1;
    }

    if let Err(e) = writer.finish() {
        return redacted_error(
            "flight_do_get ipc_finish",
            &e.to_string(),
            StatusCode::INTERNAL_SERVER_ERROR,
        );
    }

    // Wire Arrow metrics (FLIGHT-SEC-02).
    state.metrics.record_arrow_batches_sent(batches_sent);

    tracing::debug!(
        graph_id = graph_id,
        rows = total_rows,
        batches = batches_sent,
        bytes = buf.len(),
        "Arrow Flight stream serialized"
    );

    // FLIGHT-STREAM-01 (v0.71.0): stream the Arrow IPC buffer as chunked HTTP transfer
    // instead of sending the full buffer in a single body.  The response header
    // `Transfer-Encoding: chunked` allows clients to begin decoding before the
    // export completes.  The in-memory IPC buffer (bounded by result-set size) is
    // split into 64 KiB chunks and yielded lazily via `Body::from_stream`.
    const CHUNK_SIZE: usize = 65_536;
    let chunks: Vec<Result<Vec<u8>, std::io::Error>> =
        buf.chunks(CHUNK_SIZE).map(|c| Ok(c.to_vec())).collect();
    let byte_stream = tokio_stream::iter(chunks);

    Response::builder()
        .status(StatusCode::OK)
        .header("content-type", "application/vnd.apache.arrow.stream")
        .header("x-arrow-rows", total_rows.to_string())
        .header("x-arrow-batches", batches_sent.to_string())
        .body(Body::from_stream(byte_stream))
        .unwrap_or_else(|e| {
            redacted_error(
                "flight_do_get response",
                &e.to_string(),
                StatusCode::INTERNAL_SERVER_ERROR,
            )
        })
}

// ─── HTTP-04 (v0.91.0): EXPLAIN plan-row extraction helper ───────────────────

/// Extract the planner's row estimate from a PostgreSQL `EXPLAIN (FORMAT JSON)` result.
///
/// The JSON has the shape:
/// ```json
/// [{ "Plan": { "Plan Rows": 12345, ... } }]
/// ```
///
/// Returns `None` if the JSON cannot be parsed or the `Plan Rows` field is absent.
fn extract_plan_rows_from_explain(json_str: &str) -> Option<i64> {
    let v: serde_json::Value = serde_json::from_str(json_str).ok()?;
    let plan_rows = v
        .as_array()?
        .first()?
        .get("Plan")?
        .get("Plan Rows")?
        .as_i64()?;
    Some(plan_rows)
}