oracledb-protocol 0.5.1

Sans-I/O Oracle TNS/TTC protocol core for the oracledb crate.
Documentation
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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
#![forbid(unsafe_code)]

use super::*;

pub fn build_execute_query_payload(sql: &str, prefetch_rows: u32) -> Result<Vec<u8>> {
    build_execute_query_payload_with_seq(sql, prefetch_rows, 1)
}

pub fn build_execute_query_payload_with_seq(
    sql: &str,
    prefetch_rows: u32,
    seq_num: u8,
) -> Result<Vec<u8>> {
    build_execute_payload_with_seq(sql, prefetch_rows, seq_num, true)
}

pub fn build_execute_payload_with_seq(
    sql: &str,
    prefetch_rows: u32,
    seq_num: u8,
    is_query: bool,
) -> Result<Vec<u8>> {
    build_execute_payload_with_binds_with_seq(sql, prefetch_rows, seq_num, is_query, &[])
}

pub fn build_execute_payload_with_binds_with_seq(
    sql: &str,
    prefetch_rows: u32,
    seq_num: u8,
    is_query: bool,
    binds: &[BindValue],
) -> Result<Vec<u8>> {
    let bind_rows = if binds.is_empty() {
        Vec::new()
    } else {
        vec![binds.to_vec()]
    };
    build_execute_payload_with_bind_rows_with_seq(sql, prefetch_rows, seq_num, is_query, &bind_rows)
}

pub fn build_execute_payload_with_bind_rows_with_seq(
    sql: &str,
    prefetch_rows: u32,
    seq_num: u8,
    is_query: bool,
    bind_rows: &[Vec<BindValue>],
) -> Result<Vec<u8>> {
    build_execute_payload_with_bind_rows_and_options_with_seq(
        sql,
        prefetch_rows,
        seq_num,
        is_query,
        bind_rows,
        ExecuteOptions::default(),
    )
}

/// Execute message with an explicit pipeline token; pipelined operations
/// carry tokens 1..N (impl/thin/connection.pyx `_create_messages_for_pipeline`),
/// everything else carries 0.
pub fn build_execute_payload_with_bind_rows_with_seq_and_token(
    sql: &str,
    prefetch_rows: u32,
    seq_num: u8,
    is_query: bool,
    bind_rows: &[Vec<BindValue>],
    token_num: u64,
) -> Result<Vec<u8>> {
    build_execute_payload_with_bind_rows_and_options_with_seq(
        sql,
        prefetch_rows,
        seq_num,
        is_query,
        bind_rows,
        ExecuteOptions {
            token_num,
            ..ExecuteOptions::default()
        },
    )
}

/// Builds a close-cursors piggyback message (reference
/// `_write_close_cursors_piggyback` + `write_cursors_to_close`); it is
/// prepended to the next regular message in the same data packet and
/// consumes a TTC sequence number of its own.
pub fn build_close_cursors_piggyback(cursor_ids: &[u32], seq_num: u8) -> Vec<u8> {
    let mut writer = TtcWriter::new();
    writer.write_u8(TNS_MSG_TYPE_PIGGYBACK);
    writer.write_u8(TNS_FUNC_CLOSE_CURSORS);
    writer.write_u8(seq_num);
    writer.write_ub8(0); // token number (23.1 ext 1+)
    writer.write_u8(1); // pointer
    writer.write_ub4(u32::try_from(cursor_ids.len()).unwrap_or(u32::MAX));
    for cursor_id in cursor_ids {
        writer.write_ub4(*cursor_id);
    }
    writer.into_bytes()
}

pub fn build_execute_payload_with_bind_rows_and_options_with_seq(
    sql: &str,
    prefetch_rows: u32,
    seq_num: u8,
    is_query: bool,
    bind_rows: &[Vec<BindValue>],
    exec_options: ExecuteOptions,
) -> Result<Vec<u8>> {
    let sql_bytes = sql.as_bytes();
    let sql_len =
        u32::try_from(sql_bytes.len()).map_err(|_| ProtocolError::InvalidPacketLength {
            length: sql_bytes.len(),
            minimum: 0,
        })?;
    let bind_count = bind_rows.first().map_or(0, Vec::len);
    for row in bind_rows {
        if row.len() != bind_count {
            return Err(ProtocolError::TtcDecode("inconsistent bind row width"));
        }
    }
    let bind_count = u32::try_from(bind_count).map_err(|_| ProtocolError::InvalidPacketLength {
        length: bind_count,
        minimum: 0,
    })?;
    let bind_row_count =
        u32::try_from(bind_rows.len()).map_err(|_| ProtocolError::InvalidPacketLength {
            length: bind_rows.len(),
            minimum: 0,
        })?;
    // Preallocate the writer so the small per-field `write_*` pushes do not grow
    // the backing `Vec` through several doublings (each a heap allocation). The
    // fixed message header + the inline SQL bytes dominate the no-bind/small-bind
    // common case (e.g. `select 1 from dual` is 87 bytes total); bind columns add
    // their own bytes and may still grow the buffer, but the hot small-statement
    // path now builds in a single allocation. The written bytes are unchanged —
    // this is a pure allocation optimization (see `TtcWriter::with_capacity`).
    let writer_capacity = 96 + sql_bytes.len();
    let mut writer = TtcWriter::with_capacity(writer_capacity);
    writer.write_function_code_with_seq(TNS_FUNC_EXECUTE, seq_num);
    writer.write_ub8(exec_options.token_num);

    let is_plsql = statement_is_plsql(sql);
    let parse_only = exec_options.parse_only;
    // a fresh parse is required when the statement has no open server cursor
    // or is DDL (reference execute.pyx:88-89)
    let needs_parse = exec_options.cursor_id == 0 || crate::sql::statement_is_ddl(sql);
    // a scroll request only repositions the open cursor and fetches; the
    // EXECUTE/BIND options are suppressed (reference execute.pyx:82-84,105)
    let scroll_operation = exec_options.scroll_operation;
    let mut options = 0;
    if needs_parse {
        options |= TNS_EXEC_OPTION_PARSE;
    }
    if !parse_only && !scroll_operation {
        options |= TNS_EXEC_OPTION_EXECUTE;
    }
    if is_query {
        if parse_only {
            options |= TNS_EXEC_OPTION_DESCRIBE;
        } else if !exec_options.no_prefetch {
            // reference execute.pyx:99 gates FETCH on `not stmt._no_prefetch`;
            // a no-prefetch statement (VECTOR columns) leaves the rows to be
            // retrieved by the follow-up define-fetch instead.
            options |= TNS_EXEC_OPTION_FETCH;
        }
    }
    if bind_count > 0 && !scroll_operation {
        options |= TNS_EXEC_OPTION_BIND;
    }
    if is_plsql {
        if bind_count > 0 {
            options |= TNS_EXEC_OPTION_PLSQL_BIND;
        }
    } else if !parse_only {
        options |= TNS_EXEC_OPTION_NOT_PLSQL;
    }
    if exec_options.batcherrors {
        options |= TNS_EXEC_OPTION_BATCH_ERRORS;
    }
    let num_iters = if is_query && !parse_only {
        prefetch_rows
    } else {
        1
    };
    // al8i4[1]: queries report 0 on first execute and the iteration count on
    // re-execute of an open cursor (execute.pyx:187-193)
    let exec_count = if parse_only {
        0
    } else if is_query {
        if exec_options.cursor_id == 0 {
            0
        } else {
            num_iters
        }
    } else {
        bind_row_count.max(1)
    };
    let query_flag = u32::from(is_query);
    // reference sets the implicit-resultset flag on every full execute with
    // SQL (execute.pyx:81-82); anonymous PL/SQL blocks need it for
    // dbms_sql.return_result (ORA-29481 otherwise)
    let mut exec_flags = if parse_only {
        0
    } else {
        TNS_EXEC_FLAGS_IMPLICIT_RESULTSET
    };
    if exec_options.arraydmlrowcounts {
        exec_flags |= TNS_EXEC_FLAGS_DML_ROWCOUNTS;
    }
    // scrollable cursors keep the result set open across fetches and avoid the
    // server cancelling on end-of-fetch (reference execute.pyx:85-87)
    if exec_options.scrollable && !parse_only {
        exec_flags |= TNS_EXEC_FLAGS_SCROLLABLE;
        exec_flags |= TNS_EXEC_FLAGS_NO_CANCEL_ON_EOF;
    }
    writer.write_ub4(options);
    writer.write_ub4(exec_options.cursor_id);
    if needs_parse {
        writer.write_u8(1); // pointer (cursor id)
        writer.write_ub4(sql_len);
    } else {
        writer.write_u8(0); // pointer (cursor id)
        writer.write_ub4(0);
    }
    writer.write_u8(1);
    writer.write_ub4(13);
    writer.write_u8(0);
    writer.write_u8(0);
    writer.write_ub4(0);
    writer.write_ub4(num_iters);
    writer.write_ub4(TNS_MAX_LONG_LENGTH);
    if bind_count == 0 {
        writer.write_u8(0);
        writer.write_ub4(0);
    } else {
        writer.write_u8(1);
        writer.write_ub4(bind_count);
    }
    // CQN registration id (registerquery) split lsb/msb across the al8i4 slots
    // (reference execute.pyx:116-119,156,163). Zero for ordinary executes.
    let registration_id_lsb = (exec_options.registration_id & 0xffff_ffff) as u32;
    let registration_id_msb = ((exec_options.registration_id >> 32) & 0xffff_ffff) as u32;
    writer.write_u8(0);
    writer.write_u8(0);
    writer.write_u8(0);
    writer.write_u8(0);
    writer.write_u8(0);
    writer.write_u8(0);
    writer.write_ub4(0);
    writer.write_ub4(registration_id_lsb); // registration id (lsb)
    writer.write_u8(0); // pointer (al8objlist)
    writer.write_u8(1); // pointer (al8objlen)
    writer.write_u8(0); // pointer (al8blv)
    writer.write_ub4(0); // al8blvl
    writer.write_u8(0); // pointer (al8dnam)
    writer.write_ub4(0); // al8dnaml
    writer.write_ub4(registration_id_msb); // registration id (msb)
    if exec_options.arraydmlrowcounts {
        writer.write_u8(1); // pointer (al8pidmlrc)
        writer.write_ub4(exec_count); // al8pidmlrcbl
        writer.write_u8(1); // pointer (al8pidmlrcl)
    } else {
        writer.write_u8(0); // pointer (al8pidmlrc)
        writer.write_ub4(0); // al8pidmlrcbl
        writer.write_u8(0); // pointer (al8pidmlrcl)
    }
    writer.write_u8(0); // pointer (al8sqlsig)
    writer.write_ub4(0); // SQL signature length
    writer.write_u8(0); // pointer (SQL ID)
    writer.write_ub4(0); // allocated size of SQL ID
    writer.write_u8(0); // pointer (length of SQL ID)
    writer.write_u8(0); // pointer (chunk ids)
    writer.write_ub4(0); // number of chunk ids

    if needs_parse {
        writer.write_bytes_with_length(sql_bytes)?;
        writer.write_ub4(1); // al8i4[0] parse
    } else {
        writer.write_ub4(0); // al8i4[0] parse
    }
    writer.write_ub4(exec_count);
    writer.write_ub4(0);
    writer.write_ub4(0);
    writer.write_ub4(0);
    writer.write_ub4(0);
    writer.write_ub4(0);
    writer.write_ub4(query_flag); // al8i4[7] is query
    writer.write_ub4(0); // al8i4[8]
    writer.write_ub4(exec_flags); // al8i4[9] execute flags
    writer.write_ub4(exec_options.fetch_orientation); // al8i4[10] fetch orientation
    writer.write_ub4(exec_options.fetch_pos); // al8i4[11] fetch pos
    writer.write_ub4(0); // al8i4[12]
                         // a scroll request carries no bind parameters (reference suppresses the
                         // BIND option and never writes bind params for scroll_operation)
    if !bind_rows.is_empty() && !scroll_operation {
        write_bind_params(
            &mut writer,
            bind_rows,
            is_plsql,
            exec_options.max_string_size,
        )?;
    }
    Ok(writer.into_bytes())
}

pub(crate) fn write_bind_params(
    writer: &mut TtcWriter,
    bind_rows: &[Vec<BindValue>],
    is_plsql: bool,
    max_string_size: u32,
) -> Result<()> {
    let Some(first_row) = bind_rows.first() else {
        return Ok(());
    };
    let mut bind_metadata = Vec::with_capacity(first_row.len());
    for index in 0..first_row.len() {
        bind_metadata.push(write_bind_metadata_for_rows(writer, bind_rows, index)?);
    }
    for row in bind_rows {
        if !is_plsql && row.iter().all(BindValue::is_output_only) {
            continue;
        }
        writer.write_u8(TNS_MSG_TYPE_ROW_DATA);
        for index in bind_row_value_order(row, &bind_metadata, is_plsql, max_string_size) {
            let value = &row[index];
            let (_ora_type_num, csfrm, _buffer_size) = bind_metadata
                .get(index)
                .copied()
                .unwrap_or((ORA_TYPE_NUM_VARCHAR, CS_FORM_IMPLICIT, 1));
            write_bind_value(writer, value, csfrm)?;
        }
    }
    Ok(())
}

pub(crate) fn bind_row_value_order(
    row: &[BindValue],
    bind_metadata: &[(u8, u8, u32)],
    is_plsql: bool,
    max_string_size: u32,
) -> Vec<usize> {
    let mut non_long = Vec::with_capacity(row.len());
    let mut long = Vec::new();
    for (index, value) in row.iter().enumerate() {
        if !is_plsql && value.is_output_only() {
            continue;
        }
        // non-LONG values are written first followed by any LONG values; a
        // value is "long" when its buffer size exceeds the maximum string
        // size (reference messages/base.pyx:1529-1565 keys this off
        // `metadata.buffer_size > buf._caps.max_string_size`)
        if !is_plsql
            && bind_metadata
                .get(index)
                .is_some_and(|(ora_type_num, _, buffer_size)| {
                    matches!(*ora_type_num, ORA_TYPE_NUM_LONG | ORA_TYPE_NUM_LONG_RAW)
                        || *buffer_size > max_string_size
                })
        {
            long.push(index);
        } else {
            non_long.push(index);
        }
    }
    non_long.extend(long);
    non_long
}

pub(crate) fn write_bind_metadata_for_rows(
    writer: &mut TtcWriter,
    bind_rows: &[Vec<BindValue>],
    index: usize,
) -> Result<(u8, u8, u32)> {
    let Some(first_row) = bind_rows.first() else {
        return Ok((ORA_TYPE_NUM_VARCHAR, CS_FORM_IMPLICIT, 1));
    };
    let Some(first_value) = first_row.get(index) else {
        return Ok((ORA_TYPE_NUM_VARCHAR, CS_FORM_IMPLICIT, 1));
    };
    let mut metadata_value = first_value;
    let (mut ora_type_num, mut csfrm, mut buffer_size) = bind_metadata(first_value);
    let mut needs_type_inference = matches!(first_value, BindValue::Null);
    for row in bind_rows.iter().skip(1) {
        let Some(value) = row.get(index) else {
            continue;
        };
        if needs_type_inference {
            if matches!(value, BindValue::Null) {
                continue;
            }
            metadata_value = value;
            (ora_type_num, csfrm, buffer_size) = bind_metadata(value);
            needs_type_inference = false;
            continue;
        }
        let (row_ora_type_num, row_csfrm, row_buffer_size) = bind_metadata(value);
        if row_csfrm == csfrm && bind_metadata_types_are_compatible(ora_type_num, row_ora_type_num)
        {
            ora_type_num = promoted_bind_metadata_type(ora_type_num, row_ora_type_num);
            buffer_size = buffer_size.max(row_buffer_size);
        }
    }
    write_bind_metadata_with_type(writer, metadata_value, ora_type_num, csfrm, buffer_size)?;
    Ok((ora_type_num, csfrm, buffer_size))
}

pub(crate) fn bind_metadata_types_are_compatible(left: u8, right: u8) -> bool {
    left == right
        || (matches!(
            left,
            ORA_TYPE_NUM_CHAR | ORA_TYPE_NUM_VARCHAR | ORA_TYPE_NUM_LONG
        ) && matches!(
            right,
            ORA_TYPE_NUM_CHAR | ORA_TYPE_NUM_VARCHAR | ORA_TYPE_NUM_LONG
        ))
        || (matches!(left, ORA_TYPE_NUM_RAW | ORA_TYPE_NUM_LONG_RAW)
            && matches!(right, ORA_TYPE_NUM_RAW | ORA_TYPE_NUM_LONG_RAW))
}

pub(crate) fn promoted_bind_metadata_type(left: u8, right: u8) -> u8 {
    if matches!(left, ORA_TYPE_NUM_LONG | ORA_TYPE_NUM_LONG_RAW) {
        left
    } else if matches!(right, ORA_TYPE_NUM_LONG | ORA_TYPE_NUM_LONG_RAW) {
        right
    } else {
        left
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    fn find_subslice(haystack: &[u8], needle: &[u8], label: &str) -> usize {
        haystack
            .windows(needle.len())
            .position(|window| window == needle)
            .unwrap_or_else(|| panic!("{label} not found in execute payload"))
    }

    #[test]
    fn register_query_execute_payload_splits_registration_id() {
        let registration_id = 0x1122_3344_5566_7788_u64;
        let payload = build_execute_payload_with_bind_rows_and_options_with_seq(
            "select * from rust_register_query_t",
            0,
            7,
            true,
            &[],
            ExecuteOptions {
                registration_id,
                ..ExecuteOptions::default()
            },
        )
        .expect("execute payload");

        let lsb = [0x55, 0x66, 0x77, 0x88];
        let msb = [0x11, 0x22, 0x33, 0x44];
        let lsb_pos = payload
            .windows(lsb.len())
            .position(|window| window == lsb)
            .expect("registration id lsb is encoded");
        let msb_pos = payload
            .windows(msb.len())
            .position(|window| window == msb)
            .expect("registration id msb is encoded");

        assert!(
            lsb_pos < msb_pos,
            "execute payload writes registration id lsb before msb"
        );
    }

    #[test]
    fn long_bind_split_uses_negotiated_max_string_size() {
        let row = vec![
            BindValue::Raw(vec![b'A'; 3_999]),
            BindValue::Raw(vec![b'B'; 4_001]),
            BindValue::Raw(vec![b'C'; 32_767]),
            BindValue::Text("ZMARK".to_string()),
        ];
        let metadata = row.iter().map(bind_metadata).collect::<Vec<_>>();

        assert_eq!(
            bind_row_value_order(&row, &metadata, false, 4_000),
            vec![0, 3, 1, 2],
            "STANDARD max_string_size=4000 writes >4000-byte binds in the long section"
        );
        assert_eq!(
            bind_row_value_order(&row, &metadata, false, 32_767),
            vec![0, 1, 2, 3],
            "32K-capable connections keep <=32767-byte binds in ordinary order"
        );
        assert_eq!(
            bind_row_value_order(&row, &metadata, true, 4_000),
            vec![0, 1, 2, 3],
            "PL/SQL bind order is unchanged"
        );

        let standard = build_execute_payload_with_bind_rows_and_options_with_seq(
            "insert into t values (:1, :2, :3, :4)",
            1,
            7,
            false,
            &[row.clone()],
            ExecuteOptions::default().with_max_string_size(4_000),
        )
        .expect("STANDARD execute payload");
        let standard_a = find_subslice(&standard, &[b'A'; 32], "STANDARD A value");
        let standard_b = find_subslice(&standard, &[b'B'; 32], "STANDARD B value");
        let standard_c = find_subslice(&standard, &[b'C'; 32], "STANDARD C value");
        let standard_z = find_subslice(&standard, b"ZMARK", "STANDARD raw marker");
        assert!(
            standard_a < standard_z && standard_z < standard_b && standard_b < standard_c,
            "STANDARD payload must write non-long values before >4000-byte long values"
        );

        let extended = build_execute_payload_with_bind_rows_and_options_with_seq(
            "insert into t values (:1, :2, :3, :4)",
            1,
            8,
            false,
            &[row],
            ExecuteOptions::default().with_max_string_size(32_767),
        )
        .expect("32K execute payload");
        let extended_a = find_subslice(&extended, &[b'A'; 32], "32K A value");
        let extended_b = find_subslice(&extended, &[b'B'; 32], "32K B value");
        let extended_c = find_subslice(&extended, &[b'C'; 32], "32K C value");
        let extended_z = find_subslice(&extended, b"ZMARK", "32K raw marker");
        assert!(
            extended_a < extended_b && extended_b < extended_c && extended_c < extended_z,
            "32K payload must keep <=32767-byte values in bind order"
        );
    }
}