tree: e027e53824336dea24c9b77e3dea2c067fb4eee0 [path history] [tgz]
  1. zx/
  2. bti.fidl
  3. BUILD.gn
  4. cache.fidl
  5. channel.fidl
  6. clock.fidl
  7. cprng.fidl
  8. debug.fidl
  9. debuglog.fidl
  10. errors.fidl
  11. event.fidl
  12. eventpair.fidl
  13. exception.fidl
  14. fifo.fidl
  15. framebuffer.fidl
  16. futex.fidl
  17. guest.fidl
  18. handle.fidl
  19. interrupt.fidl
  20. iob.fidl
  21. iommu.fidl
  22. ioports.fidl
  23. job.fidl
  24. ktrace.fidl
  25. misc.fidl
  26. msi.fidl
  27. mtrace.fidl
  28. object.fidl
  29. overview.fidl
  30. OWNERS
  31. pager.fidl
  32. pc.fidl
  33. pci.fidl
  34. pmt.fidl
  35. port.fidl
  36. process.fidl
  37. profile.fidl
  38. README.md
  39. resource.fidl
  40. restricted.fidl
  41. rights.fidl
  42. sampler.fidl
  43. smc.fidl
  44. socket.fidl
  45. stream.fidl
  46. syscall.test.fidl
  47. system.fidl
  48. task.fidl
  49. thread.fidl
  50. timer.fidl
  51. types.fidl
  52. vcpu.fidl
  53. vdso.gni
  54. vmar.fidl
  55. vmo.fidl
  56. zx_common.fidl
zircon/vdso/README.md

FIDL library zx

FIDL library zx describes Fuchsia's syscall interface. The modeling of the interface is currently experimental and undergoing a slow evolution. Described in RFC 190, https://fxbug.dev/42061412 tracks the process of realizing zx as non-experimental, pure FIDL.

The current version of the library - dubbed “v2” - purposefully overfits to modeling the C vDSO interface. https://fxbug.dev/42061642 describes the reasoning and methodology of this approach, which is ultimately an expedient and temporary measure. As proposed in the RFC, the ultimate modeling will expressly avoid this and attempt to frame things in a more general way with “bring your own runtime” in mind.

Conventions & Quirks

Naming

Library zx adheres to standard FIDL style guide.

Experimental types

Per the ‘C overfit’ v2 design, several C-like types are temporarily introduced to library zx behind the experimental zx_c_types flag:

  • experimental_pointer<T>: represents a pointer (to a type T) and has the FIDL ABI of a uint64.

  • usize64: represents the size of a region of memory and has the FIDL ABI of uint64. Its binding in Fuchsia-targeting C and C++ code is meant to be size_t.

  • uintptr64: an integral type of sufficient size so as to be able to hold a pointer, practically regarded as an address in a remote address space. It has the FIDL ABI of uint64 and its binding in Fuchsia-targeting C/C++ code is intended to be uintptr_t.

  • uchar: represents an opaque, unsigned, 8-bit ‘character’ (e.g., ASCII or a UTF-8 code point) and has the FIDL ABI of uint8. Its binding in Fuchsia-targeting C/C++ code is intended to be char.

Representation of syscalls

Currently lacking a means of declaring syscalls in FIDL in a first-class manner, we use the following convention for declaring a logical grouping of syscalls:

@transport("Syscall")
protocol NounPhrase {
    VerbPhrase(struct{...}) -> (struct{...}) error status;

    ...
};

This method corresponds to zx_${noun_phrase}_${verb_phrase}(): its ‘in’ parameters are given in order in the request struct and its ‘out’ parameters given in order in the response struct. The error status clause can be dropped in the case of syscalls that do not return zx_status_t.

See @no_protocol_prefix for a possible protocol annotation.

See @blocking, @const, @internal, @next, @noreturn, and @vdsocall, @testonly, @test_category1, and @test_category2 for possible method annotations.

Representation of buffers

We represent the buffers of caller-owned memory passed into syscalls as vectors, implicitly representing separate data and length parameters.

See @embedded_alias, @size32, and @voidptr for possible annotations.

Syscall buffer specification should be holistically designed in the context of https://fxbug.dev/42061412.

Documentation

TODO(https://fxbug.dev/42061412): Have fidldoc emit the syscall documentation (//docs/reference/syscalls/) in a more first-class way. Currently, the content of those markdown pages are expected to appear as the docstrings of the associated FIDL syscall declarations.

TODO(https://fxbug.dev/42061412): Settle on a convention for how official syscall documentation should refer to its FIDL source-of-truth. For now, we ignore the FIDL representation and refer solely to the associated C bindings.

Special attributes

@blocking

Annotates a syscall declaration to indicate that the calling thread is blocked until the call returns.

This should be formalized as something known to and validated by fidlc - or redesigned altogether - in the context of https://fxbug.dev/42061412.

@const

Annotates a @vdsocall-decorated syscall declaration to indicate that the function is “const” in the sense of __attribute__((__const__)).

This information is not a part of public ABI - relevant only to implementation details - and should be designed away in the context of https://fxbug.dev/42061412.

@embedded_alias(“<alias_name>”>)

Annotates a vector or experimental_pointer whose element/pointee type is an alias. This attribute serves to expediently inject the name of the alias into the related IR. Only a full resolution of an alias survives into the IR today, a bug which is tracked by https://fxbug.dev/42057022. Once resolved, this attribute should be straightforwardly removed.

@handle_unchecked

Annotates a handle as a syscall parameter to indicate that it is released/consumed by that call. Similarly so for a vector of handles.

This should be formalized as something known to and validated by fidlc - or redesigned altogether - in the context of https://fxbug.dev/42061412.

@inout

Annotates a syscall parameter to indicate - with the C bindings in mind - that it should be treated as both an ‘in’ and an ‘out’ parameter. If applied to a vector, the implicit data parameter is regarded as an out parameter, while the implicit size parameter as regarded as an ‘in’.

This notion should be redesigned more holistically in the context of https://fxbug.dev/42061412.

@internal

Annotates a “syscall” declaration to indicate that the call is not a part of public ABI and describes internal vDSO logic.

This information is not a part of public ABI - relevant only to implementation details - and should be designed away in the context of https://fxbug.dev/42061412.

@next

Annotates an element to indicate that the feature is not yet ‘well-baked’ and whose should not be unconditionally distributed in the SDK.

This should be formalized as something known to and validated by fidlc - or redesigned altogether - in the context of https://fxbug.dev/42061412.

@no_protocol_prefix

Annotates a protocol representing a family of syscalls to indicate that the name of the protocol should not be factored in to the name of its constituent syscalls. In this case, the protocol name is arbitrary and the syscalls members include the would-be family namespacing directly into their names. This is expedient in the cases where the would-be protocol name clashes with that of another FIDL element in the library.

For example, zx_clock_read() would naturally be represented - in zx v2 - as

@transport("Syscall")
protocol Clock {
    ...

    Read(resource struct {
        handle handle;
    }) -> (struct {
        now time;
    }) error status;

    ...
};

However, zx.Clock already exists as an enum, preventing us from declaring a protocol with that same name. So instead we spell this as

@no_protocol_prefix
@transport("Syscall")
protocol ClockFuncs {  // An arbitrary name.
    ...

    ClockRead(resource struct {
        handle handle;
    }) -> (struct {
        now time;
    }) error status;

    ...
};

This is a hack and the collisions in question should be whittled down over the course of https://fxbug.dev/42061412. At that point, this attribute should go away.

@noreturn

Annotates a syscall declaration to indicate that the call will not return.

This should be formalized as something known to and validated by fidlc - or redesigned altogether - in the context of https://fxbug.dev/42061412.

@out

Annotates a syscall parameter in the request struct to indicate - with the C bindings in mind - that it actually should be treated as an ‘out’ parameter.

This notion should be redesigned more holistically in the context of https://fxbug.dev/42061412.

@release

Annotates a handle as a syscall parameter to indicate that it is released/consumed by that call. Similarly so for a vector of handles.

This should be formalized as something known to and validated by fidlc - or redesigned altogether - in the context of https://fxbug.dev/42061412.

@size32

Annotates vector syscall parameters to indicate that the implicit size parameter is 32-bit.

Syscall buffer specification should be holistically designed in the context of https://fxbug.dev/42061412.

@testonly, @test_category1, @test_category2

These are test-specific and it should be rethought in the context of https://fxbug.dev/42061412 whether these elements should be defined in zx proper.

@vdsocall

Annotates a syscall declaration to indicate that the call does not actually enter the kernel and is properly defined within the vDSO.

This information is not a part of public ABI - relevant only to implementation details - and should be designed away in the context of https://fxbug.dev/42061412.

@voidptr

Annotates experimental_pointer<byte> or vector<byte> to indicate to C backends that the mapped types should be represented with void*.

This should be redesigned altogether in the context of https://fxbug.dev/42061412.

@wrapped_return

Annotates a singleton, syscall response struct, indicating that the syscall's return type is actually the type of the contained parameter.

As an example, consider uint32_t zx_system_get_num_cpus():

@transport("Syscall")
protocol System {
    @const
    @vdsocall
    GetNumCpus() -> (@wrapped_return struct {
        count uint32;
    });

    ...
};

This gives a workaround the limitation of protocol methods only being able to return a struct and should be sidestepped an ultimate design for syscall specification that does not have to piggy back off of protocols (https://fxbug.dev/42061412).