/* Copyright (C) 2007-2008 The Android Open Source Project ** ** This software is licensed under the terms of the GNU General Public ** License version 2, as published by the Free Software Foundation, and ** may be copied, distributed, and modified under those terms. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. */ #include "android/hw-qemud.h" #include "android/utils/debug.h" #include "android/utils/misc.h" #include "android/utils/system.h" #include "android/utils/bufprint.h" #include "qemu-char.h" #include "charpipe.h" #include "cbuffer.h" #define D(...) VERBOSE_PRINT(qemud,__VA_ARGS__) #define D_ACTIVE VERBOSE_CHECK(qemud) /* the T(...) macro is used to dump traffic */ #define T_ACTIVE 0 #if T_ACTIVE #define T(...) VERBOSE_PRINT(qemud,__VA_ARGS__) #else #define T(...) ((void)0) #endif /* max serial MTU. Don't change this without modifying * development/emulator/qemud/qemud.c as well. */ #define MAX_SERIAL_PAYLOAD 4000 /* max framed data payload. Must be < (1 << 16) */ #define MAX_FRAME_PAYLOAD 65535 /* * the qemud daemon program is only used within Android as a bridge * between the emulator program and the emulated system. it really works as * a simple stream multiplexer that works as follows: * * - qemud is started by init following instructions in * /system/etc/init.goldfish.rc (i.e. it is never started on real devices) * * - qemud communicates with the emulator program through a single serial * port, whose name is passed through a kernel boot parameter * (e.g. android.qemud=ttyS1) * * - qemud binds one unix local stream socket (/dev/socket/qemud, created * by init through /system/etc/init.goldfish.rc). * * * emulator <==serial==> qemud <---> /dev/socket/qemud <-+--> client1 * | * +--> client2 * * - the protocol used on the serial connection is pretty simple: * * offset size description * 0 2 2-char hex string giving the destination or * source channel * 2 4 4-char hex string giving the payload size * 6 n the message payload * * for emulator->system messages, the 'channel' index indicates * to which channel the payload must be sent * * for system->emulator messages, the 'channel' index indicates from * which channel the payload comes from. * * the payload size is limited to MAX_SERIAL_PAYLOAD bytes. * * - communication between a client and qemud is stream based, but supports * an optional framing mode which can be used to send packets larger than * MAX_SERIAL_PAYLOAD bytes and provides packet bounding. * * offset size description * 0 4 4-char hex string giving the payload size * 6 n the message payload * * The size of the payload is then limited to 65535 bytes. * * - the special channel index 0 is used by the emulator and qemud only. * other channel numbers correspond to clients. More specifically, * connection are created like this: * * * the client connects to /dev/socket/qemud * * * the client sends the service name through the socket, as * * * * qemud creates a "Client" object internally, assigns it an * internal unique channel number > 0, then sends a connection * initiation request to the emulator (i.e. through channel 0): * * connect:: * * where is the service name, and is a 4-hexchar * number corresponding to the channel number. * * * in case of success, the emulator responds through channel 0 * with: * * ok:connect: * * after this, all messages between the client and the emulator * are passed in pass-through mode. If the client closes the * connection, qemud sends the following to the emulator: * * disconnect: * * * if the emulator refuses the service connection, it will * send the following through channel 0: * * ko:connect::reason-for-failure * * * any command sent through channel 0 to the emulator that is * not properly recognized will be answered by: * * ko:unknown command * * Internally, the daemon maintains a "Client" object for each client * connection (i.e. accepting socket connection). */ /* * IMPLEMENTATION DETAILS: * * We use one charpipe to connect the emulated serial port to the 'QemudSerial' * object. This object is used to receive data from the serial port, and * unframe messages (i.e. extract payload length + channel id from header, * then the payload itself), before sending them to a generic receiver. * * The QemudSerial object can also be used to send messages to the daemon * through the serial port (see qemud_serial_send()) * * The multiplexer is connected to one or more 'service' objects. * are themselves connected through a charpipe to an emulated device or * control sub-module in the emulator. * * tty <==charpipe==> QemudSerial ---> QemudMultiplexer ----> QemudClient * ^ | * | | * +--------------------------------------+ * */ /** HANDLING INCOMING DATA FRAMES **/ typedef struct QemudSink { int len; int size; uint8_t* buff; } QemudSink; static void qemud_sink_reset( QemudSink* ss, int size, uint8_t* buffer ) { ss->len = 0; ss->size = size; ss->buff = buffer; } static int qemud_sink_fill( QemudSink* ss, const uint8_t* *pmsg, int *plen) { int avail = ss->size - ss->len; if (avail <= 0) return 1; if (avail > *plen) avail = *plen; memcpy(ss->buff + ss->len, *pmsg, avail); *pmsg += avail; *plen -= avail; ss->len += avail; return (ss->len == ss->size); } static int qemud_sink_needed( QemudSink* ss ) { return ss->size - ss->len; } /** HANDLING SERIAL PORT CONNECTION **/ /* The QemudSerial object receives data from the serial port charpipe. * It parses the header to extract the channel id and payload length, * then the message itself. * * Incoming messages are sent to a generic receiver identified by * the 'recv_opaque' and 'recv_func' parameters to qemud_serial_init() * * It also provides qemud_serial_send() which can be used to send * messages back through the serial port. */ #define HEADER_SIZE 6 #define LENGTH_OFFSET 2 #define LENGTH_SIZE 4 #define CHANNEL_OFFSET 0 #define CHANNEL_SIZE 2 /* length of the framed header */ #define FRAME_HEADER_SIZE 4 #define BUFFER_SIZE MAX_SERIAL_PAYLOAD /* out of convenience, the incoming message is zero-terminated * and can be modified by the receiver (e.g. for tokenization). */ typedef void (*QemudSerialReceive)( void* opaque, int channel, uint8_t* msg, int msglen); typedef struct QemudSerial { CharDriverState* cs; /* serial charpipe endpoint */ /* managing incoming packets from the serial port */ ABool need_header; int overflow; int in_size; int in_channel; QemudSink header[1]; QemudSink payload[1]; uint8_t data0[MAX_SERIAL_PAYLOAD+1]; /* receiver */ QemudSerialReceive recv_func; /* receiver callback */ void* recv_opaque; /* receiver user-specific data */ } QemudSerial; /* called by the charpipe to see how much bytes can be * read from the serial port. */ static int qemud_serial_can_read( void* opaque ) { QemudSerial* s = opaque; if (s->overflow > 0) { return s->overflow; } /* if in_size is 0, we're reading the header */ if (s->need_header) return qemud_sink_needed(s->header); /* otherwise, we're reading the payload */ return qemud_sink_needed(s->payload); } /* called by the charpipe to read data from the serial * port. 'len' cannot be more than the value returned * by 'qemud_serial_can_read'. */ static void qemud_serial_read( void* opaque, const uint8_t* from, int len ) { QemudSerial* s = opaque; T("%s: received %3d bytes: '%s'", __FUNCTION__, len, quote_bytes((const void*)from, len)); while (len > 0) { int avail; /* skip overflow bytes */ if (s->overflow > 0) { avail = s->overflow; if (avail > len) avail = len; from += avail; len -= avail; continue; } /* read header if needed */ if (s->need_header) { if (!qemud_sink_fill(s->header, (const uint8_t**)&from, &len)) break; /* extract payload length + channel id */ s->in_size = hex2int( s->data0 + LENGTH_OFFSET, LENGTH_SIZE ); s->in_channel = hex2int( s->data0 + CHANNEL_OFFSET, CHANNEL_SIZE ); s->header->len = 0; if (s->in_size <= 0 || s->in_channel < 0) { D("%s: bad header: '%.*s'", __FUNCTION__, HEADER_SIZE, s->data0); continue; } if (s->in_size > MAX_SERIAL_PAYLOAD) { D("%s: ignoring huge serial packet: length=%d channel=%1", __FUNCTION__, s->in_size, s->in_channel); s->overflow = s->in_size; continue; } /* prepare 'in_data' for payload */ s->need_header = 0; qemud_sink_reset(s->payload, s->in_size, s->data0); } /* read payload bytes */ if (!qemud_sink_fill(s->payload, &from, &len)) break; /* zero-terminate payload, then send it to receiver */ s->payload->buff[s->payload->size] = 0; D("%s: channel=%2d len=%3d '%s'", __FUNCTION__, s->in_channel, s->payload->size, quote_bytes((const void*)s->payload->buff, s->payload->size)); s->recv_func( s->recv_opaque, s->in_channel, s->payload->buff, s->payload->size ); /* prepare for new header */ s->need_header = 1; } } /* intialize a QemudSerial object with a charpipe endpoint * and a receiver. */ static void qemud_serial_init( QemudSerial* s, CharDriverState* cs, QemudSerialReceive recv_func, void* recv_opaque ) { s->cs = cs; s->recv_func = recv_func; s->recv_opaque = recv_opaque; s->need_header = 1; s->overflow = 0; qemud_sink_reset( s->header, HEADER_SIZE, s->data0 ); s->in_size = 0; s->in_channel = -1; qemu_chr_add_handlers( cs, qemud_serial_can_read, qemud_serial_read, NULL, s ); } /* send a message to the serial port. This will add the necessary * header. */ static void qemud_serial_send( QemudSerial* s, int channel, ABool framing, const uint8_t* msg, int msglen ) { uint8_t header[HEADER_SIZE]; uint8_t frame[FRAME_HEADER_SIZE]; int avail, len = msglen; if (msglen <= 0 || channel < 0) return; D("%s: channel=%2d len=%3d '%s'", __FUNCTION__, channel, msglen, quote_bytes((const void*)msg, msglen)); if (framing) { len += FRAME_HEADER_SIZE; } /* packetize the payload for the serial MTU */ while (len > 0) { avail = len; if (avail > MAX_SERIAL_PAYLOAD) avail = MAX_SERIAL_PAYLOAD; /* write this packet's header */ int2hex(header + LENGTH_OFFSET, LENGTH_SIZE, avail); int2hex(header + CHANNEL_OFFSET, CHANNEL_SIZE, channel); qemu_chr_write(s->cs, header, HEADER_SIZE); /* insert frame header when needed */ if (framing) { int2hex(frame, FRAME_HEADER_SIZE, msglen); qemu_chr_write(s->cs, frame, FRAME_HEADER_SIZE); avail -= FRAME_HEADER_SIZE; len -= FRAME_HEADER_SIZE; framing = 0; } /* write message content */ qemu_chr_write(s->cs, msg, avail); msg += avail; len -= avail; } } /** CLIENTS **/ /* A QemudClient models a single client as seen by the emulator. * Each client has its own channel id, and belongs to a given * QemudService (see below). * * There is a global list of clients used to multiplex incoming * messages from the channel id (see qemud_multiplexer_serial_recv()). * */ struct QemudClient { int channel; QemudSerial* serial; void* clie_opaque; QemudClientRecv clie_recv; QemudClientClose clie_close; QemudService* service; QemudClient* next_serv; /* next in same service */ QemudClient* next; QemudClient** pref; /* framing support */ int framing; ABool need_header; QemudSink header[1]; uint8_t header0[FRAME_HEADER_SIZE]; QemudSink payload[1]; }; static void qemud_service_remove_client( QemudService* service, QemudClient* client ); /* remove a QemudClient from global list */ static void qemud_client_remove( QemudClient* c ) { c->pref[0] = c->next; if (c->next) c->next->pref = c->pref; c->next = NULL; c->pref = &c->next; } /* add a QemudClient to global list */ static void qemud_client_prepend( QemudClient* c, QemudClient** plist ) { c->next = *plist; c->pref = plist; *plist = c; if (c->next) c->next->pref = &c->next; } /* receive a new message from a client, and dispatch it to * the real service implementation. */ static void qemud_client_recv( void* opaque, uint8_t* msg, int msglen ) { QemudClient* c = opaque; /* no framing, things are simple */ if (!c->framing) { if (c->clie_recv) c->clie_recv( c->clie_opaque, msg, msglen ); return; } /* framing */ #if 1 /* special case, in 99% of cases, everything is in * the incoming message, and we can do all we need * directly without dynamic allocation. */ if (msglen > FRAME_HEADER_SIZE && c->need_header == 1 && qemud_sink_needed(c->header) == 0) { int len = hex2int( msg, FRAME_HEADER_SIZE ); if (len >= 0 && msglen == len + FRAME_HEADER_SIZE) { if (c->clie_recv) c->clie_recv( c->clie_opaque, msg+FRAME_HEADER_SIZE, msglen-FRAME_HEADER_SIZE); return; } } #endif while (msglen > 0) { /* read the header */ if (c->need_header) { int frame_size; uint8_t* data; if (!qemud_sink_fill(c->header, (const uint8_t**)&msg, &msglen)) break; frame_size = hex2int(c->header0, 4); if (frame_size == 0) { D("%s: ignoring empty frame", __FUNCTION__); continue; } if (frame_size < 0) { D("%s: ignoring corrupted frame header '.*s'", __FUNCTION__, FRAME_HEADER_SIZE, c->header0 ); continue; } AARRAY_NEW(data, frame_size+1); /* +1 for terminating zero */ qemud_sink_reset(c->payload, frame_size, data); c->need_header = 0; c->header->len = 0; } /* read the payload */ if (!qemud_sink_fill(c->payload, (const uint8_t**)&msg, &msglen)) break; c->payload->buff[c->payload->size] = 0; if (c->clie_recv) c->clie_recv( c->clie_opaque, c->payload->buff, c->payload->size ); AFREE(c->payload->buff); c->need_header = 1; } } /* disconnect a client. this automatically frees the QemudClient. * note that this also removes the client from the global list * and from its service's list, if any. */ static void qemud_client_disconnect( void* opaque ) { QemudClient* c = opaque; /* remove from current list */ qemud_client_remove(c); /* send a disconnect command to the daemon */ if (c->channel > 0) { char tmp[128], *p=tmp, *end=p+sizeof(tmp); p = bufprint(tmp, end, "disconnect:%04x", c->channel); qemud_serial_send(c->serial, 0, 0, (uint8_t*)tmp, p-tmp); } /* call the client close callback */ if (c->clie_close) { c->clie_close(c->clie_opaque); c->clie_close = NULL; } c->clie_recv = NULL; /* remove from service list, if any */ if (c->service) { qemud_service_remove_client(c->service, c); c->service = NULL; } AFREE(c); } /* allocate a new QemudClient object */ static QemudClient* qemud_client_alloc( int channel_id, void* clie_opaque, QemudClientRecv clie_recv, QemudClientClose clie_close, QemudSerial* serial, QemudClient** pclients ) { QemudClient* c; ANEW0(c); c->serial = serial; c->channel = channel_id; c->clie_opaque = clie_opaque; c->clie_recv = clie_recv; c->clie_close = clie_close; c->framing = 0; c->need_header = 1; qemud_sink_reset(c->header, FRAME_HEADER_SIZE, c->header0); qemud_client_prepend(c, pclients); return c; } /** SERVICES **/ /* A QemudService models a _named_ service facility implemented * by the emulator, that clients in the emulated system can connect * to. * * Each service can have a limit on the number of clients they * accept (this number if unlimited if 'max_clients' is 0). * * Each service maintains a list of active QemudClients and * can also be used to create new QemudClient objects through * its 'serv_opaque' and 'serv_connect' fields. */ struct QemudService { const char* name; int max_clients; int num_clients; QemudClient* clients; QemudServiceConnect serv_connect; void* serv_opaque; QemudService* next; }; /* Create a new QemudService object */ static QemudService* qemud_service_new( const char* name, int max_clients, void* serv_opaque, QemudServiceConnect serv_connect, QemudService** pservices ) { QemudService* s; ANEW0(s); s->name = ASTRDUP(name); s->max_clients = max_clients; s->num_clients = 0; s->clients = NULL; s->serv_opaque = serv_opaque; s->serv_connect = serv_connect; s->next = *pservices; *pservices = s; return s; } /* used internally to populate a QemudService object with a * new QemudClient */ static void qemud_service_add_client( QemudService* s, QemudClient* c ) { c->service = s; c->next_serv = s->clients; s->clients = c; s->num_clients += 1; } /* used internally to remove a QemudClient from a QemudService */ static void qemud_service_remove_client( QemudService* s, QemudClient* c ) { QemudClient** pnode = &s->clients; QemudClient* node; /* remove from clients linked-list */ for (;;) { node = *pnode; if (node == NULL) { D("%s: could not find client %d for service '%s'", __FUNCTION__, c->channel, s->name); return; } if (node == c) break; pnode = &node->next_serv; } *pnode = node->next_serv; s->num_clients -= 1; } /** MULTIPLEXER **/ /* A QemudMultiplexer object maintains the global state of the * qemud service facility. It holds a QemudSerial object to * maintain the state of the serial port connection. * * The QemudMultiplexer receives all incoming messages from * the serial port, and dispatches them to the appropriate * QemudClient. * * It also has a global list of clients, and a global list of * services. * * Finally, the QemudMultiplexer has a special QemudClient used * to handle channel 0, i.e. the control channel used to handle * connections and disconnections of clients. */ typedef struct QemudMultiplexer QemudMultiplexer; struct QemudMultiplexer { QemudSerial serial[1]; QemudClient* clients; QemudService* services; }; /* this is the serial_recv callback that is called * whenever an incoming message arrives through the serial port */ static void qemud_multiplexer_serial_recv( void* opaque, int channel, uint8_t* msg, int msglen ) { QemudMultiplexer* m = opaque; QemudClient* c = m->clients; /* dispatch to an existing client if possible * note that channel 0 is handled by a special * QemudClient that is setup in qemud_multiplexer_init() */ for ( ; c != NULL; c = c->next ) { if (c->channel == channel) { qemud_client_recv(c, msg, msglen); return; } } D("%s: ignoring %d bytes for unknown channel %d", __FUNCTION__, msglen, channel); } /* handle a new connection attempt. This returns 0 on * success, -1 if the service name is unknown, or -2 * if the service's maximum number of clients has been * reached. */ static int qemud_multiplexer_connect( QemudMultiplexer* m, const char* service_name, int channel_id ) { QemudService* sv; QemudClient* client; /* find the corresponding registered service by name */ for (sv = m->services; sv != NULL; sv = sv->next) { if (!strcmp(sv->name, service_name)) { break; } } if (sv == NULL) { D("%s: no registered '%s' service", __FUNCTION__, service_name); return -1; } /* check service's client count */ if (sv->max_clients > 0 && sv->num_clients >= sv->max_clients) { D("%s: registration failed for '%s' service: too many clients (%d)", __FUNCTION__, service_name, sv->num_clients); return -2; } /* ask the service to create a new QemudClient. Note that we * assume that this calls qemud_client_new() which will add * the client to the service's list automatically. */ client = sv->serv_connect( sv->serv_opaque, sv, channel_id ); if (client == NULL) { D("%s: registration failed for '%s' service", __FUNCTION__, service_name); return -1; } D("%s: registered client channel %d for '%s' service", __FUNCTION__, channel_id, service_name); return 0; } /* disconnect a given client from its channel id */ static void qemud_multiplexer_disconnect( QemudMultiplexer* m, int channel ) { QemudClient* c; /* find the client by its channel id, then disconnect it */ for (c = m->clients; c; c = c->next) { if (c->channel == channel) { D("%s: disconnecting client %d", __FUNCTION__, channel); /* note thatt this removes the client from * m->clients automatically. */ c->channel = -1; /* no need to send disconnect: */ qemud_client_disconnect(c); return; } } D("%s: disconnecting unknown channel %d", __FUNCTION__, channel); } /* handle control messages. This is used as the receive * callback for the special QemudClient setup to manage * channel 0. * * note that the message is zero-terminated for convenience * (i.e. msg[msglen] is a valid memory read that returns '\0') */ static void qemud_multiplexer_control_recv( void* opaque, uint8_t* msg, int msglen ) { QemudMultiplexer* mult = opaque; uint8_t* msgend = msg + msglen; char tmp[64], *p=tmp, *end=p+sizeof(tmp); /* handle connection attempts. * the client message must be "connect::" * where is a 4-char hexadecimal string, which must be > 0 */ if (msglen > 8 && !memcmp(msg, "connect:", 8)) { const char* service_name = (const char*)msg + 8; int channel, ret; char* q; q = strchr(service_name, ':'); if (q == NULL || q+5 != (char*)msgend) { D("%s: malformed connect message: '%.*s' (offset=%d)", __FUNCTION__, msglen, (const char*)msg, q ? q-(char*)msg : -1); return; } *q++ = 0; /* zero-terminate service name */ channel = hex2int((uint8_t*)q, 4); if (channel <= 0) { D("%s: malformed channel id '%.*s", __FUNCTION__, 4, q); return; } ret = qemud_multiplexer_connect(mult, service_name, channel); /* the answer can be one of: * ok:connect: * ko:connect:: */ if (ret < 0) { if (ret == -1) { /* could not connect */ p = bufprint(tmp, end, "ko:connect:%04x:unknown service", channel); } else { p = bufprint(tmp, end, "ko:connect:%04x:service busy", channel); } } else { p = bufprint(tmp, end, "ok:connect:%04x", channel); } qemud_serial_send(mult->serial, 0, 0, (uint8_t*)tmp, p-tmp); return; } /* handle client disconnections, * this message arrives when the client has closed the connection. * format: "disconnect:" where is a 4-hex channel id > 0 */ if (msglen == 15 && !memcmp(msg, "disconnect:", 11)) { int channel_id = hex2int(msg+11, 4); if (channel_id <= 0) { D("%s: malformed disconnect channel id: '%.*s'", __FUNCTION__, 4, msg+11); return; } qemud_multiplexer_disconnect(mult, channel_id); return; } /* anything else is a problem */ p = bufprint(tmp, end, "ko:unknown command"); qemud_serial_send(mult->serial, 0, 0, (uint8_t*)tmp, p-tmp); } /* initialize the global QemudMultiplexer. */ static void qemud_multiplexer_init( QemudMultiplexer* mult, CharDriverState* serial_cs ) { QemudClient* control; /* initialize serial handler */ qemud_serial_init( mult->serial, serial_cs, qemud_multiplexer_serial_recv, mult ); /* setup listener for channel 0 */ control = qemud_client_alloc( 0, mult, qemud_multiplexer_control_recv, NULL, mult->serial, &mult->clients ); } /* the global multiplexer state */ static QemudMultiplexer _multiplexer[1]; /** HIGH-LEVEL API **/ /* this function must be used in the serv_connect callback * of a given QemudService object (see qemud_service_register() * below). It is used to register a new QemudClient to acknowledge * a new client connection. * * 'clie_opaque', 'clie_recv' and 'clie_close' are used to * send incoming client messages to the corresponding service * implementation, or notify the service that a client has * disconnected. */ QemudClient* qemud_client_new( QemudService* service, int channelId, void* clie_opaque, QemudClientRecv clie_recv, QemudClientClose clie_close ) { QemudMultiplexer* m = _multiplexer; QemudClient* c = qemud_client_alloc( channelId, clie_opaque, clie_recv, clie_close, m->serial, &m->clients ); qemud_service_add_client(service, c); return c; } /* this can be used by a service implementation to send an answer * or message to a specific client. */ void qemud_client_send ( QemudClient* client, const uint8_t* msg, int msglen ) { qemud_serial_send(client->serial, client->channel, client->framing != 0, msg, msglen); } /* enable framing for this client. When TRUE, this will * use internally a simple 4-hexchar header before each * message exchanged through the serial port. */ void qemud_client_set_framing( QemudClient* client, int framing ) { /* release dynamic buffer if we're disabling framing */ if (client->framing) { if (!client->need_header) { AFREE(client->payload->buff); client->need_header = 1; } } client->framing = !!framing; } /* this can be used by a service implementation to close a * specific client connection. */ void qemud_client_close( QemudClient* client ) { qemud_client_disconnect(client); } /* this is the end of the serial charpipe that must be passed * to the emulated tty implementation. The other end of the * charpipe must be passed to qemud_multiplexer_init(). */ static CharDriverState* android_qemud_cs; extern void android_qemud_init( void ) { CharDriverState* cs; if (android_qemud_cs != NULL) return; if (qemu_chr_open_charpipe( &android_qemud_cs, &cs ) < 0) { derror( "%s: can't create charpipe to serial port", __FUNCTION__ ); exit(1); } qemud_multiplexer_init(_multiplexer, cs); } /* return the serial charpipe endpoint that must be used * by the emulated tty implementation. */ CharDriverState* android_qemud_get_cs( void ) { if (android_qemud_cs == NULL) android_qemud_init(); return android_qemud_cs; } /* this function is used to register a new named qemud-based * service. You must provide 'serv_opaque' and 'serv_connect' * which will be called whenever a new client tries to connect * to the services. * * 'serv_connect' shall return NULL if the connection is refused, * or a handle to a new QemudClient otherwise. The latter can be * created through qemud_client_new() defined above. * * 'max_clients' is the maximum number of clients accepted by * the service concurrently. If this value is 0, then any number * of clients can connect. */ QemudService* qemud_service_register( const char* service_name, int max_clients, void* serv_opaque, QemudServiceConnect serv_connect ) { QemudMultiplexer* m = _multiplexer; QemudService* sv; if (android_qemud_cs == NULL) android_qemud_init(); sv = qemud_service_new(service_name, max_clients, serv_opaque, serv_connect, &m->services); return sv; } /* broadcast a given message to all clients of a given QemudService */ extern void qemud_service_broadcast( QemudService* sv, const uint8_t* msg, int msglen ) { QemudClient* c; for (c = sv->clients; c; c = c->next_serv) qemud_client_send(c, msg, msglen); } /* * The following code is used for backwards compatibility reasons. * It allows you to implement a given qemud-based service through * a charpipe. * * In other words, this implements a QemudService and corresponding * QemudClient that connects a qemud client running in the emulated * system, to a CharDriverState object implemented through a charpipe. * * QemudCharClient <===charpipe====> (char driver user) * * For example, this is used to implement the "gsm" service when the * modem emulation is provided through an external serial device. * * A QemudCharService can have only one client by definition. * There is no QemudCharClient object because we can store a single * CharDriverState handle in the 'opaque' field for simplicity. */ typedef struct { QemudService* service; CharDriverState* cs; } QemudCharService; /* called whenever a new message arrives from a qemud client. * this simply sends the message through the charpipe to the user. */ static void _qemud_char_client_recv( void* opaque, uint8_t* msg, int msglen ) { CharDriverState* cs = opaque; qemu_chr_write(cs, msg, msglen); } /* we don't expect clients of char. services to exit. Just * print an error to signal an unexpected situation. We should * be able to recover from these though, so don't panic. */ static void _qemud_char_client_close( void* opaque ) { derror("unexpected qemud char. channel close"); } /* called by the charpipe to know how much data can be read from * the user. Since we send everything directly to the serial port * we can return an arbitrary number. */ static int _qemud_char_service_can_read( void* opaque ) { return 8192; /* whatever */ } /* called to read data from the charpipe and send it to the client. * used qemud_service_broadcast() even if there is a single client * because we don't need a QemudCharClient object this way. */ static void _qemud_char_service_read( void* opaque, const uint8_t* from, int len ) { QemudService* sv = opaque; qemud_service_broadcast( sv, from, len ); } /* called when a qemud client tries to connect to a char. service. * we simply create a new client and open the charpipe to receive * data from it. */ static QemudClient* _qemud_char_service_connect( void* opaque, QemudService* sv, int channel ) { CharDriverState* cs = opaque; QemudClient* c = qemud_client_new( sv, channel, cs, _qemud_char_client_recv, _qemud_char_client_close); /* now we can open the gates :-) */ qemu_chr_add_handlers( cs, _qemud_char_service_can_read, _qemud_char_service_read, NULL, sv ); return c; } /* returns a charpipe endpoint that can be used by an emulated * device or external serial port to implement a char. service */ int android_qemud_get_channel( const char* name, CharDriverState* *pcs ) { CharDriverState* cs; if (qemu_chr_open_charpipe(&cs, pcs) < 0) { derror("can't open charpipe for '%s' qemud service", name); exit(2); } qemud_service_register(name, 1, cs, _qemud_char_service_connect); return 0; } /* set the character driver state for a given qemud communication channel. this * is used to attach the channel to an external char driver device directly. * returns 0 on success, -1 on error */ int android_qemud_set_channel( const char* name, CharDriverState* peer_cs ) { qemud_service_register(name, 1, peer_cs, _qemud_char_service_connect); return 0; }