zbus/message/mod.rs
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
//! D-Bus Message.
use std::{fmt, num::NonZeroU32, sync::Arc};
use static_assertions::assert_impl_all;
use zbus_names::{ErrorName, InterfaceName, MemberName};
use zvariant::{serialized, Endian};
use crate::{utils::padding_for_8_bytes, zvariant::ObjectPath, Error, Result};
mod builder;
pub use builder::Builder;
mod field;
pub(crate) use field::{Field, FieldCode};
mod fields;
pub(crate) use fields::Fields;
use fields::QuickFields;
mod body;
pub use body::Body;
pub(crate) mod header;
use header::MIN_MESSAGE_SIZE;
pub use header::{EndianSig, Flags, Header, PrimaryHeader, Type, NATIVE_ENDIAN_SIG};
/// A position in the stream of [`Message`] objects received by a single [`zbus::Connection`].
///
/// Note: the relative ordering of values obtained from distinct [`zbus::Connection`] objects is
/// not specified; only sequence numbers originating from the same connection should be compared.
#[derive(Debug, Default, Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
pub struct Sequence {
recv_seq: u64,
}
impl Sequence {
/// A sequence number that is higher than any other; used by errors that terminate a stream.
pub(crate) const LAST: Self = Self { recv_seq: u64::MAX };
}
/// A D-Bus Message.
///
/// The content of the message are stored in serialized format. To get the body of the message, use
/// the [`Message::body`] method, and use [`Body`] methods to deserialize it. You may also access
/// the header and other details with the various other getters.
///
/// Also provided are constructors for messages of different types. These will mainly be useful for
/// very advanced use cases as typically you will want to create a message for immediate dispatch
/// and hence use the API provided by [`Connection`], even when using the low-level API.
///
/// **Note**: The message owns the received FDs and will close them when dropped. You can
/// deserialize to [`zvariant::OwnedFd`] the body (that you get using [`Message::body`]) if you want
/// to keep the FDs around after the containing message is dropped.
///
/// [`Connection`]: struct.Connection#method.call_method
#[derive(Clone)]
pub struct Message {
pub(super) inner: Arc<Inner>,
}
pub(super) struct Inner {
pub(crate) primary_header: PrimaryHeader,
pub(crate) quick_fields: QuickFields,
pub(crate) bytes: serialized::Data<'static, 'static>,
pub(crate) body_offset: usize,
pub(crate) recv_seq: Sequence,
}
assert_impl_all!(Message: Send, Sync, Unpin);
impl Message {
/// Create a builder for message of type [`Type::MethodCall`].
pub fn method<'b, 'p: 'b, 'm: 'b, P, M>(path: P, method_name: M) -> Result<Builder<'b>>
where
P: TryInto<ObjectPath<'p>>,
M: TryInto<MemberName<'m>>,
P::Error: Into<Error>,
M::Error: Into<Error>,
{
#[allow(deprecated)]
Builder::method_call(path, method_name)
}
/// Create a builder for message of type [`Type::Signal`].
pub fn signal<'b, 'p: 'b, 'i: 'b, 'm: 'b, P, I, M>(
path: P,
iface: I,
signal_name: M,
) -> Result<Builder<'b>>
where
P: TryInto<ObjectPath<'p>>,
I: TryInto<InterfaceName<'i>>,
M: TryInto<MemberName<'m>>,
P::Error: Into<Error>,
I::Error: Into<Error>,
M::Error: Into<Error>,
{
#[allow(deprecated)]
Builder::signal(path, iface, signal_name)
}
/// Create a builder for message of type [`Type::MethodReturn`].
pub fn method_reply(call: &Self) -> Result<Builder<'_>> {
#[allow(deprecated)]
Builder::method_return(&call.header())
}
/// Create a builder for message of type [`Type::Error`].
pub fn method_error<'b, 'e: 'b, E>(call: &Self, name: E) -> Result<Builder<'b>>
where
E: TryInto<ErrorName<'e>>,
E::Error: Into<Error>,
{
#[allow(deprecated)]
Builder::error(&call.header(), name)
}
/// Create a message from bytes.
///
/// **Note:** Since the constructed message is not construct by zbus, the receive sequence,
/// which can be acquired from [`Message::recv_position`], is not applicable and hence set
/// to `0`.
///
/// # Safety
///
/// This method is unsafe as bytes may have an invalid encoding.
pub unsafe fn from_bytes(bytes: serialized::Data<'static, 'static>) -> Result<Self> {
Self::from_raw_parts(bytes, 0)
}
/// Create a message from its full contents
pub(crate) fn from_raw_parts(
bytes: serialized::Data<'static, 'static>,
recv_seq: u64,
) -> Result<Self> {
let endian = Endian::from(EndianSig::try_from(bytes[0])?);
if endian != bytes.context().endian() {
return Err(Error::IncorrectEndian);
}
let (primary_header, fields_len) = PrimaryHeader::read_from_data(&bytes)?;
let (header, _) = bytes.deserialize()?;
let header_len = MIN_MESSAGE_SIZE + fields_len as usize;
let body_offset = header_len + padding_for_8_bytes(header_len);
let quick_fields = QuickFields::new(&bytes, &header)?;
Ok(Self {
inner: Arc::new(Inner {
primary_header,
quick_fields,
bytes,
body_offset,
recv_seq: Sequence { recv_seq },
}),
})
}
pub fn primary_header(&self) -> &PrimaryHeader {
&self.inner.primary_header
}
/// The message header.
///
/// Note: This method does not deserialize the header but it does currently allocate so its not
/// zero-cost. While the allocation is small and will hopefully be removed in the future, it's
/// best to keep the header around if you need to access it a lot.
pub fn header(&self) -> Header<'_> {
let mut fields = Fields::new();
let quick_fields = &self.inner.quick_fields;
if let Some(p) = quick_fields.path(self) {
fields.add(Field::Path(p));
}
if let Some(i) = quick_fields.interface(self) {
fields.add(Field::Interface(i));
}
if let Some(m) = quick_fields.member(self) {
fields.add(Field::Member(m));
}
if let Some(e) = quick_fields.error_name(self) {
fields.add(Field::ErrorName(e));
}
if let Some(r) = quick_fields.reply_serial() {
fields.add(Field::ReplySerial(r));
}
if let Some(d) = quick_fields.destination(self) {
fields.add(Field::Destination(d));
}
if let Some(s) = quick_fields.sender(self) {
fields.add(Field::Sender(s));
}
if let Some(s) = quick_fields.signature(self) {
fields.add(Field::Signature(s));
}
if let Some(u) = quick_fields.unix_fds() {
fields.add(Field::UnixFDs(u));
}
Header::new(self.inner.primary_header.clone(), fields)
}
/// The message type.
pub fn message_type(&self) -> Type {
self.inner.primary_header.msg_type()
}
/// The object to send a call to, or the object a signal is emitted from.
#[deprecated(
since = "4.0.0",
note = "Use `Message::header` with `message::Header::path` instead"
)]
pub fn path(&self) -> Option<ObjectPath<'_>> {
self.inner.quick_fields.path(self)
}
/// The interface to invoke a method call on, or that a signal is emitted from.
#[deprecated(
since = "4.0.0",
note = "Use `Message::header` with `message::Header::interface` instead"
)]
pub fn interface(&self) -> Option<InterfaceName<'_>> {
self.inner.quick_fields.interface(self)
}
/// The member, either the method name or signal name.
#[deprecated(
since = "4.0.0",
note = "Use `Message::header` with `message::Header::member` instead"
)]
pub fn member(&self) -> Option<MemberName<'_>> {
self.inner.quick_fields.member(self)
}
/// The serial number of the message this message is a reply to.
#[deprecated(
since = "4.0.0",
note = "Use `Message::header` with `message::Header::reply_serial` instead"
)]
pub fn reply_serial(&self) -> Option<NonZeroU32> {
self.inner.quick_fields.reply_serial()
}
/// The body that you can deserialize using [`Body::deserialize`].
///
/// # Example
///
/// ```
/// # use zbus::message::Message;
/// # (|| -> zbus::Result<()> {
/// let send_body = (7i32, (2i32, "foo"), vec!["bar"]);
/// let message = Message::method("/", "ping")?
/// .destination("zbus.test")?
/// .interface("zbus.test")?
/// .build(&send_body)?;
/// let body = message.body();
/// let body: zbus::zvariant::Structure = body.deserialize()?;
/// let fields = body.fields();
/// assert!(matches!(fields[0], zvariant::Value::I32(7)));
/// assert!(matches!(fields[1], zvariant::Value::Structure(_)));
/// assert!(matches!(fields[2], zvariant::Value::Array(_)));
///
/// let reply_body = Message::method_reply(&message)?.build(&body)?.body();
/// let reply_value : (i32, (i32, &str), Vec<String>) = reply_body.deserialize()?;
///
/// assert_eq!(reply_value.0, 7);
/// assert_eq!(reply_value.2.len(), 1);
/// # Ok(()) })().unwrap()
/// ```
pub fn body(&self) -> Body {
Body::new(
self.inner.bytes.slice(self.inner.body_offset..),
self.clone(),
)
}
/// Get a reference to the underlying byte encoding of the message.
pub fn data(&self) -> &serialized::Data<'static, 'static> {
&self.inner.bytes
}
/// Get the receive ordering of a message.
///
/// This may be used to identify how two events were ordered on the bus. It only produces a
/// useful ordering for messages that were produced by the same [`zbus::Connection`].
///
/// This is completely unrelated to the serial number on the message, which is set by the peer
/// and might not be ordered at all.
pub fn recv_position(&self) -> Sequence {
self.inner.recv_seq
}
}
impl fmt::Debug for Message {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let mut msg = f.debug_struct("Msg");
let h = self.header();
msg.field("type", &h.message_type());
msg.field("serial", &self.primary_header().serial_num());
if let Some(sender) = h.sender() {
msg.field("sender", &sender);
}
if let Some(serial) = h.reply_serial() {
msg.field("reply-serial", &serial);
}
if let Some(path) = h.path() {
msg.field("path", &path);
}
if let Some(iface) = h.interface() {
msg.field("iface", &iface);
}
if let Some(member) = h.member() {
msg.field("member", &member);
}
if let Some(s) = self.body().signature() {
msg.field("body", &s);
}
#[cfg(unix)]
{
msg.field("fds", &self.data().fds());
}
msg.finish()
}
}
impl fmt::Display for Message {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let header = self.header();
let (ty, error_name, sender, member) = (
header.message_type(),
header.error_name(),
header.sender(),
header.member(),
);
match ty {
Type::MethodCall => {
write!(f, "Method call")?;
if let Some(m) = member {
write!(f, " {m}")?;
}
}
Type::MethodReturn => {
write!(f, "Method return")?;
}
Type::Error => {
write!(f, "Error")?;
if let Some(e) = error_name {
write!(f, " {e}")?;
}
let body = self.body();
let msg = body.deserialize_unchecked::<&str>();
if let Ok(msg) = msg {
write!(f, ": {msg}")?;
}
}
Type::Signal => {
write!(f, "Signal")?;
if let Some(m) = member {
write!(f, " {m}")?;
}
}
}
if let Some(s) = sender {
write!(f, " from {s}")?;
}
Ok(())
}
}
#[cfg(test)]
mod tests {
#[cfg(unix)]
use std::os::fd::{AsFd, AsRawFd};
use test_log::test;
#[cfg(unix)]
use zvariant::Fd;
use super::Message;
use crate::Error;
#[test]
fn test() {
#[cfg(unix)]
let stdout = std::io::stdout();
let m = Message::method("/", "do")
.unwrap()
.sender(":1.72")
.unwrap()
.build(&(
#[cfg(unix)]
Fd::from(&stdout),
"foo",
))
.unwrap();
assert_eq!(
m.body().signature().unwrap().to_string(),
if cfg!(unix) { "hs" } else { "s" }
);
#[cfg(unix)]
{
let fds = m.data().fds();
assert_eq!(fds.len(), 1);
// FDs get dup'ed so it has to be a different FD now.
assert_ne!(fds[0].as_fd().as_raw_fd(), stdout.as_raw_fd());
}
let body: Result<u32, Error> = m.body().deserialize();
assert!(matches!(
body.unwrap_err(),
Error::Variant(zvariant::Error::SignatureMismatch { .. })
));
assert_eq!(m.to_string(), "Method call do from :1.72");
let r = Message::method_reply(&m)
.unwrap()
.build(&("all fine!"))
.unwrap();
assert_eq!(r.to_string(), "Method return");
let e = Message::method_error(&m, "org.freedesktop.zbus.Error")
.unwrap()
.build(&("kaboom!", 32))
.unwrap();
assert_eq!(e.to_string(), "Error org.freedesktop.zbus.Error: kaboom!");
}
}