1 /* Copyright (C) 2012 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
3 /** \file sideband.h exported symbols from sideband.c */
6 * The valid sideband designators.
8 * A sideband packet consists of a header and a body. The header is sent prior
9 * to the data and contains the length of the buffer and the sideband
10 * designator, an integer. This scheme allows receivers to never read more data
11 * than what was specified in the header.
13 * The sideband designator indicates the type of the data. The authentication
14 * handshake between the command handler (child of para_server) and the client
15 * requires to exchange several small packages. Each such package is sent as a
16 * sideband package with a dedicated designator.
18 * Other designators are employed for normal command output and for log
19 * messages, where each loglevel corresponds to a sideband designator.
21 * Note that the values of this enum are part of the ABI, so never change
22 * or remove entries. Appending is OK though.
24 #define SB_DESIGNATORS \
25 /* Special value for receiving only: Accept any band. */ \
27 /* This packet contains the authentication challenge. */ \
28 DESIGNATOR(CHALLENGE), \
29 /* I solved your challenge and here is the proof. */ \
30 DESIGNATOR(CHALLENGE_RESPONSE), \
31 /* Congratulations, you are authenticated. */ \
32 DESIGNATOR(PROCEED), \
33 /* This is the command I want you to execute. */ \
34 DESIGNATOR(COMMAND), \
35 /* Ready to receive a blob (addblob commands only). */ \
36 DESIGNATOR(AWAITING_DATA), \
37 /* Normal command output (default). */ \
40 DESIGNATOR(DEBUG_LOG), \
42 DESIGNATOR(INFO_LOG), \
44 DESIGNATOR(NOTICE_LOG), \
46 DESIGNATOR(WARNING_LOG), \
48 DESIGNATOR(ERROR_LOG), \
50 DESIGNATOR(CRIT_LOG), \
52 DESIGNATOR(EMERG_LOG), \
53 /* Command terminated successfully. */ \
54 DESIGNATOR(EXIT__SUCCESS), \
55 /* Command failed. */ \
56 DESIGNATOR(EXIT__FAILURE), \
57 /* The next chunk of the blob (addblob commands only) */ \
58 DESIGNATOR(BLOB_DATA), \
59 /* An afs callback failed. */ \
60 DESIGNATOR(AFS_CB_FAILURE), \
62 /** Just prefix with \p SBD_. */
63 #define DESIGNATOR(x) SBD_ ## x
65 /** All valid sideband designators. */
66 enum sb_designator {SB_DESIGNATORS NUM_SB_DESIGNATORS};
68 /** One stringified sideband designator. */
69 #define DESIGNATOR(x) #x
70 /** List of stringified sidedband designators. */
71 #define SB_DESIGNATORS_ARRAY SB_DESIGNATORS
74 * The information contained in a sideband buffer.
76 * This structure is used for both sending and receiving data through a
77 * sideband channel. A pointer to a sideband buffer is passed to the sending
78 * side of a sideband while the receiving end yields a filled out structure
79 * once all data has been received.
82 /** Data and length. */
84 /** The band designator. */
89 * The opaque sideband context structure.
91 * A pointer to a structure of this type is returned by the two \a sb_new_xxx
92 * functions as an opaque handle. Other public functions of the sideband API
93 * take such a handle as a parameter.
98 * The type of a sideband transformation.
100 * The sideband API allows the filtering of data through an arbitrary
101 * transformation, which is useful for crypto purposes. The transformation may
102 * either transform the data in place, or return a pointer to a new buffer
103 * which contains the transformed source buffer. The internal sideband
104 * functions can tell the two types of transformations apart by checking
105 * whether the destination buffer coincides with the source buffer.
107 * If the transformation allocates a new buffer, it _must_ allocate one extra
108 * byte for \p NULL termination.
110 typedef void (*sb_transformation)(struct iovec *src, struct iovec *dst,
111 void *trafo_context);
114 /** Initialize a sideband buffer. */
115 #define SBB_INIT(_band, _buf, _numbytes) \
120 .iov_len = _numbytes \
125 struct sb_context *sb_new_recv(size_t max_size, sb_transformation t,
126 void *trafo_context);
127 void sb_get_recv_buffer(struct sb_context *c, struct iovec *iov);
128 int sb_received(struct sb_context *c, size_t nbytes, struct sb_buffer *result);
131 struct sb_context *sb_new_send(struct sb_buffer *sbb, bool dont_free,
132 sb_transformation t, void *trafo_context);
133 int sb_get_send_buffers(struct sb_context *c, struct iovec iov[2]);
134 bool sb_sent(struct sb_context *c, size_t nbytes);
136 void sb_free(struct sb_context *c);