hjkl-clipboard 0.40.0

Cross-platform clipboard library with rich types, async support, and OSC 52 fallback for SSH
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
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
//! Unix-socket wrapper for the Wayland wire protocol.
//!
//! Handles `sendmsg`/`recvmsg` for passing file descriptors via SCM_RIGHTS
//! ancillary data and buffering incoming message bytes + fds.
//!
//! No libwayland-client — only libc + std.

use std::collections::VecDeque;
use std::ffi::c_int;

use crate::ClipboardError;

use super::wayland_wire::{MessageHeader, parse_message_header};

// ---------------------------------------------------------------------------
// Socket wrapper
// ---------------------------------------------------------------------------

/// A connected Wayland Unix socket with SCM_RIGHTS fd-passing support.
pub struct WaylandSocket {
    fd: c_int,
    /// Accumulated received bytes (may contain many partial or complete messages).
    rx_buf: VecDeque<u8>,
    /// File descriptors received via SCM_RIGHTS.
    rx_fds: VecDeque<c_int>,
}

impl WaylandSocket {
    /// Connect to the Wayland compositor socket.
    ///
    /// Resolution order:
    /// 1. `$WAYLAND_DISPLAY` — if it starts with `/`, use as-is (absolute path).
    ///    Otherwise, prepend `$XDG_RUNTIME_DIR` (default `/run/user/<uid>`).
    /// 2. Fallback: `$XDG_RUNTIME_DIR/wayland-0`.
    pub(crate) fn connect() -> Result<Self, ClipboardError> {
        let socket_path = wayland_socket_path()?;
        connect_to_path(&socket_path)
    }

    /// Send `bytes` on the socket, attaching `fds` via SCM_RIGHTS.
    ///
    /// If `fds` is empty, no ancillary data is sent.
    pub(crate) fn send(&self, bytes: &[u8], fds: &[c_int]) -> Result<(), ClipboardError> {
        if bytes.is_empty() {
            return Ok(());
        }

        if fds.is_empty() {
            send_plain(self.fd, bytes)
        } else {
            send_with_fds(self.fd, bytes, fds)
        }
    }

    /// Read available data from the socket into the internal buffer.
    ///
    /// `blocking = true` blocks until at least one byte arrives.
    /// `blocking = false` sets `O_NONBLOCK` behaviour: returns `Ok(())` even
    /// if no data is available yet (the caller should check `next_message`).
    pub(crate) fn recv(&mut self, blocking: bool) -> Result<(), ClipboardError> {
        recv_into(self.fd, &mut self.rx_buf, &mut self.rx_fds, blocking)
    }

    /// Try to extract the next complete message from the receive buffer.
    ///
    /// Returns `None` if fewer than 8 header bytes, or if the advertised
    /// message size has not yet been fully received.
    pub(crate) fn next_message(&mut self) -> Option<(MessageHeader, Vec<u8>)> {
        // Peek at a contiguous slice — VecDeque may be non-contiguous so we
        // need to make_contiguous first.
        let contiguous = self.rx_buf.make_contiguous();

        let (hdr, _) = parse_message_header(contiguous)?;
        let total = hdr.size as usize;
        // A well-formed Wayland message is at least its 8-byte header. A smaller
        // advertised size is malformed (buggy or hostile compositor / corrupted
        // stream); slicing `msg_bytes[8..]` would then panic. Drop the 8 header
        // bytes we peeked to make forward progress instead of trusting `total`.
        if total < 8 {
            let drop = 8.min(self.rx_buf.len());
            self.rx_buf.drain(..drop);
            return None;
        }
        if self.rx_buf.len() < total {
            return None;
        }

        // Drain `total` bytes from the front of the deque.
        let msg_bytes: Vec<u8> = self.rx_buf.drain(..total).collect();
        // Args start after the 8-byte header.
        let args = msg_bytes[8..].to_vec();
        Some((hdr, args))
    }

    /// Take the oldest fd received via SCM_RIGHTS.
    pub(crate) fn next_fd(&mut self) -> Option<c_int> {
        self.rx_fds.pop_front()
    }

    /// The raw socket file descriptor (for use with `poll`/`epoll` in 6b).
    pub(crate) fn raw_fd(&self) -> c_int {
        self.fd
    }

    /// Construct a `WaylandSocket` from a raw file descriptor.
    ///
    /// # Safety
    ///
    /// The caller must transfer ownership of `fd` — it must be a valid open
    /// socket fd that will not be closed by any other code path. The
    /// `WaylandSocket` `Drop` impl will close it.
    #[cfg(test)]
    pub(crate) unsafe fn from_raw_fd(fd: c_int) -> Self {
        Self {
            fd,
            rx_buf: std::collections::VecDeque::new(),
            rx_fds: std::collections::VecDeque::new(),
        }
    }
}

impl Drop for WaylandSocket {
    fn drop(&mut self) {
        // Close any fds received via SCM_RIGHTS that were never consumed —
        // they are owned by us once recvmsg delivers them and would otherwise
        // leak.
        for fd in self.rx_fds.drain(..) {
            // SAFETY: fd was received via SCM_RIGHTS and is owned by us.
            unsafe { libc::close(fd) };
        }
        // SAFETY: fd was opened by us via libc::socket; close it exactly once.
        unsafe { libc::close(self.fd) };
    }
}

// ---------------------------------------------------------------------------
// Socket path resolution
// ---------------------------------------------------------------------------

fn wayland_socket_path() -> Result<String, ClipboardError> {
    let display = std::env::var("WAYLAND_DISPLAY").unwrap_or_else(|_| "wayland-0".to_owned());

    if display.starts_with('/') {
        return Ok(display);
    }

    // Relative name — prepend XDG_RUNTIME_DIR.
    let runtime_dir = std::env::var("XDG_RUNTIME_DIR").unwrap_or_else(|_| {
        // SAFETY: getuid() is always safe to call; no threads are reading this
        // value concurrently in the normal early-init path.
        let uid = unsafe { libc::getuid() };
        format!("/run/user/{uid}")
    });

    Ok(format!("{runtime_dir}/{display}"))
}

// ---------------------------------------------------------------------------
// connect_to_path
// ---------------------------------------------------------------------------

fn connect_to_path(path: &str) -> Result<WaylandSocket, ClipboardError> {
    if path.len() >= 108 {
        // UNIX_PATH_MAX is 108 bytes including NUL on Linux.
        return Err(ClipboardError::io_other("Wayland socket path too long"));
    }

    // SAFETY: socket(2) is always safe with valid constant arguments.
    let fd = unsafe { libc::socket(libc::AF_UNIX, libc::SOCK_STREAM | libc::SOCK_CLOEXEC, 0) };
    if fd < 0 {
        return Err(ClipboardError::io(std::io::Error::last_os_error()));
    }

    // Build sockaddr_un.
    // SAFETY: zeroed bytes are a valid initial state for sockaddr_un.
    let mut addr: libc::sockaddr_un = unsafe { std::mem::zeroed() };
    addr.sun_family = libc::AF_UNIX as libc::sa_family_t;

    // Copy path into sun_path; we already checked len < 108.
    let path_bytes = path.as_bytes();
    // SAFETY: addr.sun_path is [i8; 108]; we copy at most 107 bytes and the
    // rest remains zeroed (NUL-terminated).
    unsafe {
        std::ptr::copy_nonoverlapping(
            path_bytes.as_ptr() as *const libc::c_char,
            addr.sun_path.as_mut_ptr(),
            path_bytes.len(),
        );
    }

    let addr_len = (std::mem::offset_of!(libc::sockaddr_un, sun_path) + path_bytes.len() + 1)
        as libc::socklen_t;

    // SAFETY: fd is valid; addr is fully initialised above.
    let rc = unsafe {
        libc::connect(
            fd,
            &addr as *const libc::sockaddr_un as *const libc::sockaddr,
            addr_len,
        )
    };
    if rc != 0 {
        // SAFETY: fd is valid; we own it.
        unsafe { libc::close(fd) };
        return Err(ClipboardError::NoDisplay);
    }

    Ok(WaylandSocket {
        fd,
        rx_buf: VecDeque::new(),
        rx_fds: VecDeque::new(),
    })
}

// ---------------------------------------------------------------------------
// Plain send (no fds)
// ---------------------------------------------------------------------------

fn send_plain(fd: c_int, bytes: &[u8]) -> Result<(), ClipboardError> {
    let mut sent = 0;
    while sent < bytes.len() {
        // SAFETY: fd is valid; slice pointer and length are from a Rust slice.
        let n = unsafe {
            libc::send(
                fd,
                bytes[sent..].as_ptr() as *const libc::c_void,
                bytes.len() - sent,
                libc::MSG_NOSIGNAL,
            )
        };
        if n < 0 {
            return Err(ClipboardError::io(std::io::Error::last_os_error()));
        }
        sent += n as usize;
    }
    Ok(())
}

// ---------------------------------------------------------------------------
// sendmsg with SCM_RIGHTS
// ---------------------------------------------------------------------------

fn send_with_fds(fd: c_int, bytes: &[u8], fds: &[c_int]) -> Result<(), ClipboardError> {
    // Compute control-message buffer size.
    // SAFETY: CMSG_SPACE is a pure arithmetic macro; always safe.
    let cmsg_space =
        unsafe { libc::CMSG_SPACE(std::mem::size_of_val(fds) as libc::c_uint) } as usize;

    let mut cmsg_buf = vec![0u8; cmsg_space];

    // Defensive: verify fds truly fits in the allocated CMSG buffer.
    // SAFETY: CMSG_LEN is pure arithmetic.
    let hdr_size = unsafe { libc::CMSG_LEN(0) } as usize;
    let fds_bytes = std::mem::size_of_val(fds);
    if fds_bytes + hdr_size > cmsg_space {
        return Err(ClipboardError::io_other("too many fds for CMSG buffer"));
    }

    let mut iov = libc::iovec {
        iov_base: bytes.as_ptr() as *mut libc::c_void,
        iov_len: bytes.len(),
    };

    let mut msg: libc::msghdr = unsafe { std::mem::zeroed() };
    msg.msg_iov = &mut iov;
    msg.msg_iovlen = 1;
    msg.msg_control = cmsg_buf.as_mut_ptr() as *mut libc::c_void;
    // msg_controllen is size_t (usize) on glibc but socklen_t (u32) on musl.
    // try_into() infers the correct type per target; suppress the useless-
    // conversion lint that fires on glibc where both sides are usize.
    #[allow(clippy::useless_conversion)]
    {
        msg.msg_controllen = cmsg_space
            .try_into()
            .expect("cmsg_space fits in msg_controllen");
    }

    // Fill in the cmsghdr.
    // SAFETY: msg_control points to a buffer of size msg_controllen;
    // CMSG_FIRSTHDR returns a pointer into that buffer.
    let cmsg = unsafe { libc::CMSG_FIRSTHDR(&msg) };
    if cmsg.is_null() {
        return Err(ClipboardError::io_other("CMSG_FIRSTHDR returned null"));
    }

    // SAFETY: cmsg is non-null and points inside cmsg_buf.
    unsafe {
        (*cmsg).cmsg_level = libc::SOL_SOCKET;
        (*cmsg).cmsg_type = libc::SCM_RIGHTS;
        (*cmsg).cmsg_len = libc::CMSG_LEN(std::mem::size_of_val(fds) as libc::c_uint) as _;

        // Copy fd integers into the CMSG data region.
        // SAFETY: CMSG_DATA returns a pointer into cmsg's data region which is
        // large enough for `fds.len()` c_int values per CMSG_SPACE above and
        // the defensive fds_bytes + hdr_size check verified earlier.
        let data_ptr = libc::CMSG_DATA(cmsg) as *mut c_int;
        std::ptr::copy_nonoverlapping(fds.as_ptr(), data_ptr, fds.len());
    }

    // SAFETY: fd valid; msg is fully initialised.
    let n = unsafe { libc::sendmsg(fd, &msg, libc::MSG_NOSIGNAL) };
    if n < 0 {
        return Err(ClipboardError::io(std::io::Error::last_os_error()));
    }

    // The SCM_RIGHTS control message (the fds) is carried only by this first
    // `sendmsg`. If the data was written partially, send the remaining bytes
    // as plain data (no cmsg — the fds are already transferred). Skipping this
    // would truncate the wire message and desync the wayland protocol. Wayland
    // messages are small so a partial write is rare, but not impossible under
    // socket-buffer pressure.
    let sent = n as usize;
    if sent < bytes.len() {
        send_plain(fd, &bytes[sent..])?;
    }
    Ok(())
}

// ---------------------------------------------------------------------------
// recvmsg — fills rx_buf and rx_fds
// ---------------------------------------------------------------------------

// Maximum fds we expect to receive in one recvmsg call.
const MAX_FDS_PER_RECV: usize = 8;
// Read buffer size per recvmsg call.
const RECV_BUF_SIZE: usize = 4096;

fn recv_into(
    fd: c_int,
    rx_buf: &mut VecDeque<u8>,
    rx_fds: &mut VecDeque<c_int>,
    blocking: bool,
) -> Result<(), ClipboardError> {
    let mut data_buf = [0u8; RECV_BUF_SIZE];

    // SAFETY: CMSG_SPACE is pure arithmetic.
    let cmsg_space = unsafe {
        libc::CMSG_SPACE((MAX_FDS_PER_RECV * std::mem::size_of::<c_int>()) as libc::c_uint)
    } as usize;
    let mut cmsg_buf = vec![0u8; cmsg_space];

    let mut iov = libc::iovec {
        iov_base: data_buf.as_mut_ptr() as *mut libc::c_void,
        iov_len: data_buf.len(),
    };

    let mut msg: libc::msghdr = unsafe { std::mem::zeroed() };
    msg.msg_iov = &mut iov;
    msg.msg_iovlen = 1;
    msg.msg_control = cmsg_buf.as_mut_ptr() as *mut libc::c_void;
    // msg_controllen is size_t (usize) on glibc but socklen_t (u32) on musl.
    // try_into() infers the correct type per target; suppress the useless-
    // conversion lint that fires on glibc where both sides are usize.
    #[allow(clippy::useless_conversion)]
    {
        msg.msg_controllen = cmsg_space
            .try_into()
            .expect("cmsg_space fits in msg_controllen");
    }

    let flags = if blocking { 0 } else { libc::MSG_DONTWAIT };

    // SAFETY: fd is valid; msg is fully initialised above.
    let n = unsafe { libc::recvmsg(fd, &mut msg, flags) };

    if n < 0 {
        let err = std::io::Error::last_os_error();
        if !blocking
            && (err.raw_os_error() == Some(libc::EAGAIN)
                || err.raw_os_error() == Some(libc::EWOULDBLOCK))
        {
            // No data yet; non-blocking, not an error.
            return Ok(());
        }
        return Err(ClipboardError::io(err));
    }

    if n == 0 {
        return Err(ClipboardError::io_other("Wayland socket closed"));
    }

    // Append received bytes.
    rx_buf.extend(&data_buf[..n as usize]);

    // Extract any received fds from ancillary data.
    // Kernel updates msg_controllen to actual control-data bytes received.
    // Use this as the authoritative bound for the cmsg walk + fd extraction.
    let control_len = msg.msg_controllen as usize;
    // SAFETY: msg is valid after recvmsg; CMSG_FIRSTHDR reads msg_control.
    let mut cmsg = unsafe { libc::CMSG_FIRSTHDR(&msg) };
    while !cmsg.is_null() {
        // SAFETY: cmsg is non-null and within cmsg_buf.
        let level = unsafe { (*cmsg).cmsg_level };
        let typ = unsafe { (*cmsg).cmsg_type };
        if level == libc::SOL_SOCKET && typ == libc::SCM_RIGHTS {
            // SAFETY: cmsg is valid; CMSG_DATA points into cmsg's data region.
            let data = unsafe { libc::CMSG_DATA(cmsg) };
            let cmsg_len = unsafe { (*cmsg).cmsg_len } as usize;
            // SAFETY: CMSG_LEN(0) gives the header size.
            let hdr_size = unsafe { libc::CMSG_LEN(0) } as usize;
            // Reject a malformed cmsg that claims to be smaller than its own header.
            if cmsg_len < hdr_size {
                // Skip this cmsg — malicious or corrupt data.
                cmsg = unsafe { libc::CMSG_NXTHDR(&msg, cmsg) };
                continue;
            }
            let data_len = cmsg_len - hdr_size;
            let n_fds = data_len / std::mem::size_of::<c_int>();
            if n_fds == 0 {
                cmsg = unsafe { libc::CMSG_NXTHDR(&msg, cmsg) };
                continue;
            }
            // Bounds-check: the fd data must fit within the control-message
            // buffer the kernel filled. A malicious compositor or kernel bug
            // could set cmsg_len larger than the actual buffer.
            let data_end = (data as *const c_int).wrapping_add(n_fds);
            let buf_end = unsafe { cmsg_buf.as_ptr().add(control_len) } as *const c_int;
            if data_end > buf_end {
                // Corrupt cmsg — skip.
                cmsg = unsafe { libc::CMSG_NXTHDR(&msg, cmsg) };
                continue;
            }
            for i in 0..n_fds {
                // SAFETY: data_end <= buf_end verified above; each add(i)
                // for i < n_fds stays within [data, data_end).
                let received_fd = unsafe { *(data as *const c_int).add(i) };
                rx_fds.push_back(received_fd);
            }
        }
        // SAFETY: msg and cmsg are both valid; CMSG_NXTHDR walks the chain.
        cmsg = unsafe { libc::CMSG_NXTHDR(&msg, cmsg) };
    }

    Ok(())
}

// ---------------------------------------------------------------------------
// Tests — CMSG fd extraction edge cases (Security Audit H4)
// ---------------------------------------------------------------------------

#[cfg(all(test, target_os = "linux"))]
mod tests {
    use super::*;

    /// Send raw fds via `sendmsg` with SCM_RIGHTS — standalone, no WaylandSocket.
    // `msg_controllen` is `socklen_t` (u32) on macOS but `size_t` (usize) on
    // Linux, so `cmsg_space.try_into()` is a real narrowing on macOS and a
    // no-op on Linux — allow the Linux-only `useless_conversion` to keep the
    // one assignment portable.
    #[allow(clippy::useless_conversion)]
    fn send_raw_fds(sender_fd: c_int, fds: &[c_int]) {
        let dummy: [u8; 1] = [0];
        let cmsg_space =
            unsafe { libc::CMSG_SPACE(std::mem::size_of_val(fds) as libc::c_uint) } as usize;
        let mut cmsg_buf = vec![0u8; cmsg_space];
        let mut iov = libc::iovec {
            iov_base: dummy.as_ptr() as *mut libc::c_void,
            iov_len: dummy.len(),
        };
        let mut msg: libc::msghdr = unsafe { std::mem::zeroed() };
        msg.msg_iov = &mut iov;
        msg.msg_iovlen = 1;
        msg.msg_control = cmsg_buf.as_mut_ptr() as *mut libc::c_void;
        msg.msg_controllen = cmsg_space.try_into().expect("cmsg_space fits");
        let cmsg = unsafe { libc::CMSG_FIRSTHDR(&msg) };
        assert!(!cmsg.is_null());
        unsafe {
            (*cmsg).cmsg_level = libc::SOL_SOCKET;
            (*cmsg).cmsg_type = libc::SCM_RIGHTS;
            (*cmsg).cmsg_len = libc::CMSG_LEN(std::mem::size_of_val(fds) as libc::c_uint) as _;
            let data_ptr = libc::CMSG_DATA(cmsg) as *mut c_int;
            std::ptr::copy_nonoverlapping(fds.as_ptr(), data_ptr, fds.len());
        }
        let n = unsafe { libc::sendmsg(sender_fd, &msg, 0) };
        assert!(n >= 0, "sendmsg: {}", std::io::Error::last_os_error());
    }

    #[test]
    fn test_send_recv_fds_socketpair() {
        let mut fds = [0i32; 2];
        let rc = unsafe { libc::socketpair(libc::AF_UNIX, libc::SOCK_STREAM, 0, fds.as_mut_ptr()) };
        assert_eq!(rc, 0, "socketpair: {}", std::io::Error::last_os_error());
        let sender_fd = fds[0];
        let receiver_fd = fds[1];

        // Wrap the receiver in a WaylandSocket.
        let mut receiver = unsafe { WaylandSocket::from_raw_fd(receiver_fd) };

        // Create valid fds (e.g. /dev/null) — the kernel rejects SCM_RIGHTS
        // with invalid fds (EBADF).
        let null0 = unsafe { libc::open(c"/dev/null".as_ptr(), libc::O_RDONLY) };
        assert!(
            null0 >= 0,
            "open /dev/null: {}",
            std::io::Error::last_os_error()
        );
        let null1 = unsafe { libc::open(c"/dev/null".as_ptr(), libc::O_RDONLY) };
        assert!(
            null1 >= 0,
            "open /dev/null: {}",
            std::io::Error::last_os_error()
        );
        let sent_fds: [c_int; 2] = [null0, null1];
        send_raw_fds(sender_fd, &sent_fds);

        // Receive.
        receiver.recv(true).unwrap();

        let mut got = Vec::new();
        while let Some(fd) = receiver.next_fd() {
            got.push(fd);
        }
        assert_eq!(got.len(), 2);
        // Close the received fds (they are copies of null0/null1).
        for fd in &got {
            unsafe { libc::close(*fd) };
        }
        // Close sender fd and the original null fds.
        unsafe {
            libc::close(sender_fd);
            libc::close(null0);
            libc::close(null1);
        }
    }

    #[test]
    fn test_recv_no_ancillary_data() {
        let mut fds = [0i32; 2];
        let rc = unsafe { libc::socketpair(libc::AF_UNIX, libc::SOCK_STREAM, 0, fds.as_mut_ptr()) };
        assert_eq!(rc, 0);
        let sender = fds[0];
        let receiver_fd = fds[1];
        let mut receiver = unsafe { WaylandSocket::from_raw_fd(receiver_fd) };

        // Send one byte with no ancillary data.
        let byte: [u8; 1] = [0x42];
        let n = unsafe { libc::send(sender, byte.as_ptr() as *const libc::c_void, 1, 0) };
        assert_eq!(n, 1);

        receiver.recv(true).unwrap();
        assert_eq!(receiver.next_fd(), None);
        // The received byte is in rx_buf — verify we got it.
        assert_eq!(receiver.rx_buf.len(), 1);
        assert_eq!(receiver.rx_buf[0], 0x42);

        unsafe { libc::close(sender) };
    }

    #[test]
    fn test_connect_path_too_long() {
        // UNIX_PATH_MAX is 108 including NUL — so 108 chars is too long.
        let long_path = "/".repeat(108);
        let result = connect_to_path(&long_path);
        match result {
            Err(ClipboardError::Io(e)) => {
                assert!(e.to_string().contains("too long") || e.to_string().contains("108"))
            }
            _ => panic!(
                "expected ClipboardError::Io, got: {:?}",
                result.as_ref().err()
            ),
        }
    }

    #[test]
    fn test_next_message_rejects_small_size() {
        // Use a pipe fd for harmless null-fd that won't be a real socket.
        // Construct the struct manually to avoid from_raw_fd's Drop closing
        // the underlying fd. We use ManuallyDrop so we can test next_message
        // without triggering Drop's libc::close on a bogus fd.
        let mut socket = WaylandSocket {
            fd: -1,
            rx_buf: VecDeque::new(),
            rx_fds: VecDeque::new(),
        };

        // Fake a message: object_id=0, size=4 (less than 8), opcode=0.
        // Wire format: [object_id:4 LE][opcode:2 LE | size:2 LE]
        // For size=4, opcode=0: bytes = [0,0,0,0, 0,0, 4,0] (little-endian)
        socket.rx_buf.extend(&[0, 0, 0, 0, 0, 0, 4, 0]);
        // next_message should drain the header and return None.
        let result = socket.next_message();
        assert!(result.is_none());
        // The 8 header bytes should be drained.
        assert!(socket.rx_buf.is_empty());

        // Prevent Drop from closing fd -1 — set fd to a known-bad value and
        // forget the struct.
        socket.fd = -1;
        std::mem::forget(socket);
    }
}