transmission/gtk/ipc.c

759 lines
19 KiB
C
Raw Normal View History

/******************************************************************************
* $Id$
*
2007-02-19 22:09:05 +00:00
* Copyright (c) 2006-2007 Transmission authors and contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
2006-07-16 19:39:23 +00:00
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <errno.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include "transmission.h"
#include "bencode.h"
2007-05-24 05:46:23 +00:00
#include "ipcparse.h"
2006-07-16 19:39:23 +00:00
#include "conf.h"
#include "io.h"
#include "ipc.h"
#include "tr_core.h"
2007-02-19 22:09:05 +00:00
#include "tr_prefs.h"
#include "tr_torrent.h"
2006-07-16 19:39:23 +00:00
#include "util.h"
2007-02-19 22:09:05 +00:00
enum contype { CON_SERV, CON_CLIENT };
2006-07-16 19:39:23 +00:00
struct constate_serv
{
GtkWindow * wind;
gpointer core;
2006-07-16 19:39:23 +00:00
};
2007-05-24 05:46:23 +00:00
struct constate_client
{
GMainLoop * loop;
enum ipc_msg msg;
GList * files;
gboolean * succeeded;
unsigned int msgid;
2006-07-16 19:39:23 +00:00
};
2007-05-24 05:46:23 +00:00
struct constate
{
GSource * source;
int fd;
enum contype type;
struct ipc_funcs * msgs;
struct ipc_info ipc;
union
{
struct constate_serv serv;
struct constate_client client;
} u;
2006-07-16 19:39:23 +00:00
};
static void
serv_bind(struct constate *con);
static void
rmsock(void);
static gboolean
client_connect(char *path, struct constate *con);
static void
srv_io_accept(GSource *source, int fd, struct sockaddr *sa, socklen_t len,
void *vdata);
static unsigned int
2007-05-24 05:46:23 +00:00
srv_io_received(GSource *source, char *data, unsigned int len, void *vdata);
static unsigned int
cli_io_received(GSource *source, char *data, unsigned int len, void *vdata);
static void
client_sendmsg( struct constate * con );
2006-07-16 19:39:23 +00:00
static void
destroycon(struct constate *con);
static void
all_io_closed(GSource *source, void *vdata);
static void
2007-05-24 05:46:23 +00:00
cli_io_sent(GSource *source, unsigned int id, void *vdata);
static void
2007-05-24 05:46:23 +00:00
smsg_add( enum ipc_msg id, benc_val_t * val, int64_t tag, void * arg );
2006-07-16 19:39:23 +00:00
static void
2007-05-24 05:46:23 +00:00
smsg_quit( enum ipc_msg id, benc_val_t * val, int64_t tag, void * arg );
2007-02-19 22:09:05 +00:00
static void
smsg_info( enum ipc_msg id, benc_val_t * val, int64_t tag, void * arg );
static void
smsg_infoall( enum ipc_msg id, benc_val_t * val, int64_t tag, void * arg );
static int
addinfo( TrTorrent * tor, enum ipc_msg msgid, int torid, int types,
benc_val_t * val );
static void
2007-05-24 05:46:23 +00:00
all_default( enum ipc_msg id, benc_val_t * val, int64_t tag, void * arg );
static gboolean
simpleresp( struct constate * con, enum ipc_msg id, int64_t tag );
static TrTorrent *
findtor( TrCore * core, int id );
2006-07-16 19:39:23 +00:00
/* this is only used on the server */
static char *gl_sockpath = NULL;
void
ipc_socket_setup( GtkWindow * parent, TrCore * core )
2007-02-19 22:09:05 +00:00
{
2006-07-16 19:39:23 +00:00
struct constate *con;
con = g_new0(struct constate, 1);
con->source = NULL;
con->fd = -1;
con->type = CON_SERV;
2007-05-24 05:46:23 +00:00
con->msgs = ipc_initmsgs();
if( NULL == con->msgs ||
0 > ipc_addmsg( con->msgs, IPC_MSG_ADDMANYFILES, smsg_add ) ||
0 > ipc_addmsg( con->msgs, IPC_MSG_GETINFO, smsg_info ) ||
0 > ipc_addmsg( con->msgs, IPC_MSG_GETINFOALL, smsg_infoall ) ||
0 > ipc_addmsg( con->msgs, IPC_MSG_GETSTAT, smsg_info ) ||
0 > ipc_addmsg( con->msgs, IPC_MSG_GETSTATALL, smsg_infoall ) ||
2007-05-24 05:46:23 +00:00
0 > ipc_addmsg( con->msgs, IPC_MSG_QUIT, smsg_quit ) )
{
errmsg( con->u.serv.wind, _("Failed to set up IPC:\n%s"),
strerror( errno ) );
g_free( con );
return;
}
ipc_setdefmsg( con->msgs, all_default );
2006-07-16 19:39:23 +00:00
con->u.serv.wind = parent;
con->u.serv.core = core;
g_object_add_weak_pointer( G_OBJECT( core ), &con->u.serv.core );
2006-07-16 19:39:23 +00:00
serv_bind(con);
}
2007-02-19 22:09:05 +00:00
static gboolean
2007-05-24 05:46:23 +00:00
blocking_client( enum ipc_msg msgid, GList * files )
2007-02-19 22:09:05 +00:00
{
2006-07-16 19:39:23 +00:00
struct constate *con;
char *path;
gboolean ret = FALSE;
con = g_new0(struct constate, 1);
con->source = NULL;
con->fd = -1;
2007-02-19 22:09:05 +00:00
con->type = CON_CLIENT;
2007-05-24 05:46:23 +00:00
con->msgs = ipc_initmsgs();
if( NULL == con->msgs )
{
fprintf( stderr, _("failed to set up IPC: %s\n"), strerror( errno ) );
g_free( con );
return FALSE;
}
ipc_setdefmsg( con->msgs, all_default );
ipc_newcon( &con->ipc, con->msgs );
2007-02-19 22:09:05 +00:00
con->u.client.loop = g_main_loop_new(NULL, TRUE);
2007-05-24 05:46:23 +00:00
con->u.client.msg = msgid;
2007-02-19 22:09:05 +00:00
con->u.client.files = files;
con->u.client.succeeded = &ret;
con->u.client.msgid = 0;
2006-07-16 19:39:23 +00:00
path = cf_sockname();
if(!client_connect(path, con)) {
g_free(path);
destroycon(con);
return FALSE;
}
2007-02-19 22:09:05 +00:00
g_main_loop_run(con->u.client.loop);
2006-07-16 19:39:23 +00:00
return ret;
}
2007-02-19 22:09:05 +00:00
gboolean
ipc_sendfiles_blocking( GList * files )
{
2007-05-24 05:46:23 +00:00
return blocking_client( IPC_MSG_ADDMANYFILES, files );
2007-02-19 22:09:05 +00:00
}
gboolean
ipc_sendquit_blocking( void )
{
2007-05-24 05:46:23 +00:00
return blocking_client( IPC_MSG_QUIT, NULL );
2007-02-19 22:09:05 +00:00
}
2006-07-16 19:39:23 +00:00
/* open a local socket for clients connections */
static void
serv_bind(struct constate *con) {
struct sockaddr_un sa;
rmsock();
gl_sockpath = cf_sockname();
if(0 > (con->fd = socket(AF_LOCAL, SOCK_STREAM, 0)))
goto fail;
bzero(&sa, sizeof(sa));
sa.sun_family = AF_LOCAL;
strncpy(sa.sun_path, gl_sockpath, sizeof(sa.sun_path) - 1);
/* unlink any existing socket file before trying to create ours */
unlink(gl_sockpath);
if(0 > bind(con->fd, (struct sockaddr *)&sa, SUN_LEN(&sa))) {
/* bind may fail if there was already a socket, so try twice */
unlink(gl_sockpath);
if(0 > bind(con->fd, (struct sockaddr *)&sa, SUN_LEN(&sa)))
goto fail;
}
if(0 > listen(con->fd, 5))
goto fail;
con->source = io_new_listening(con->fd, sizeof(struct sockaddr_un),
srv_io_accept, all_io_closed, con);
g_atexit(rmsock);
return;
fail:
errmsg(con->u.serv.wind, _("Failed to set up socket:\n%s"),
strerror(errno));
if(0 <= con->fd)
close(con->fd);
con->fd = -1;
rmsock();
}
static void
rmsock(void) {
if(NULL != gl_sockpath) {
unlink(gl_sockpath);
g_free(gl_sockpath);
}
}
static gboolean
client_connect(char *path, struct constate *con) {
struct sockaddr_un addr;
2007-05-24 05:46:23 +00:00
uint8_t * buf;
size_t size;
2006-07-16 19:39:23 +00:00
if(0 > (con->fd = socket(AF_UNIX, SOCK_STREAM, 0))) {
fprintf(stderr, _("failed to create socket: %s\n"), strerror(errno));
return FALSE;
}
bzero(&addr, sizeof(addr));
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, path, sizeof(addr.sun_path) - 1);
if(0 > connect(con->fd, (struct sockaddr*)&addr, SUN_LEN(&addr))) {
fprintf(stderr, _("failed to connect to %s: %s\n"), path, strerror(errno));
return FALSE;
}
2007-05-24 05:46:23 +00:00
con->source = io_new(con->fd, cli_io_sent, cli_io_received,
2006-07-16 19:39:23 +00:00
all_io_closed, con);
2007-05-24 05:46:23 +00:00
if( NULL == con->source )
{
close( con->fd );
return FALSE;
}
2006-07-16 19:39:23 +00:00
2007-05-24 05:46:23 +00:00
buf = ipc_mkvers( &size );
if( NULL == buf )
{
2007-05-24 05:46:23 +00:00
close( con->fd );
return FALSE;
}
2007-05-24 05:46:23 +00:00
io_send_keepdata( con->source, buf, size );
2006-07-16 19:39:23 +00:00
return TRUE;
}
static void
srv_io_accept(GSource *source SHUTUP, int fd, struct sockaddr *sa SHUTUP,
socklen_t len SHUTUP, void *vdata) {
struct constate *con = vdata;
struct constate *newcon;
2007-05-24 05:46:23 +00:00
uint8_t * buf;
size_t size;
2006-07-16 19:39:23 +00:00
newcon = g_new(struct constate, 1);
memcpy(newcon, con, sizeof(*newcon));
newcon->fd = fd;
2007-05-24 05:46:23 +00:00
ipc_newcon( &newcon->ipc, con->msgs );
newcon->source = io_new(fd, NULL, srv_io_received, all_io_closed, newcon);
2007-05-24 05:46:23 +00:00
if( NULL == newcon->source )
{
g_free( newcon );
close( fd );
return;
2006-07-16 19:39:23 +00:00
}
2007-05-24 05:46:23 +00:00
buf = ipc_mkvers( &size );
if( NULL == buf )
{
g_free( newcon );
close( fd );
return;
2006-07-16 19:39:23 +00:00
}
2007-05-24 05:46:23 +00:00
io_send_keepdata( newcon->source, buf, size );
2006-07-16 19:39:23 +00:00
}
2007-05-24 05:46:23 +00:00
static unsigned int
srv_io_received( GSource * source SHUTUP, char * data, unsigned int len,
void * vdata)
{
2007-05-24 05:46:23 +00:00
struct constate * con = vdata;
ssize_t res;
if( IPC_MIN_MSG_LEN > len )
{
return 0;
}
res = ipc_parse( &con->ipc, data, len, con );
if( 0 > res )
{
switch( errno )
{
case EPERM:
errmsg( con->u.serv.wind, _("bad IPC protocol version") );
break;
case EINVAL:
errmsg( con->u.serv.wind, _("IPC protocol parse error") );
break;
default:
errmsg( con->u.serv.wind, _("IPC parsing failed: %s"),
strerror( errno ) );
}
destroycon( con );
return 0;
}
return res;
}
2006-07-16 19:39:23 +00:00
2007-05-24 05:46:23 +00:00
static unsigned int
cli_io_received( GSource * source SHUTUP, char * data, unsigned int len,
void * vdata )
{
2007-05-24 05:46:23 +00:00
struct constate * con = vdata;
struct constate_client * cli = &con->u.client;
ssize_t res;
2006-07-16 19:39:23 +00:00
2007-05-24 05:46:23 +00:00
if( IPC_MIN_MSG_LEN > len )
{
return 0;
}
res = ipc_parse( &con->ipc, data, len, con );
if( 0 > res )
{
switch( errno )
{
case EPERM:
fprintf( stderr, _("bad IPC protocol version\n") );
break;
case EINVAL:
fprintf( stderr, _("IPC protocol parse error\n") );
break;
default:
fprintf( stderr, _("IPC parsing failed: %s\n"),
strerror( errno ) );
break;
}
destroycon( con );
return 0;
}
if( HASVERS( &con->ipc ) && 0 == cli->msgid )
2007-05-24 05:46:23 +00:00
{
client_sendmsg( con );
}
return res;
2006-07-16 19:39:23 +00:00
}
2007-05-24 05:46:23 +00:00
static void
client_sendmsg( struct constate * con )
{
struct constate_client * cli = &con->u.client;
GList * ii;
uint8_t * buf;
size_t size;
benc_val_t packet, * val;
int saved;
switch( cli->msg )
{
case IPC_MSG_ADDMANYFILES:
val = ipc_initval( &con->ipc, cli->msg, -1, &packet, TYPE_LIST );
if( NULL == val ||
tr_bencListReserve( val, g_list_length( cli->files ) ) )
{
perror( "malloc" );
destroycon( con );
return;
}
for( ii = cli->files; NULL != ii; ii = ii->next )
{
tr_bencInitStr( tr_bencListAdd( val ), ii->data, -1, 0 );
}
buf = ipc_mkval( &packet, &size );
saved = errno;
tr_bencFree( &packet );
g_list_free( cli->files );
cli->files = NULL;
2006-07-16 19:39:23 +00:00
break;
2007-05-24 05:46:23 +00:00
case IPC_MSG_QUIT:
buf = ipc_mkempty( &con->ipc, &size, cli->msg, -1 );
saved = errno;
break;
default:
g_assert_not_reached();
return;
}
if( NULL == buf )
{
errno = saved;
perror( "malloc" );
destroycon( con );
return;
}
2006-07-16 19:39:23 +00:00
2007-05-24 05:46:23 +00:00
cli->msgid = io_send_keepdata( con->source, buf, size );
2006-07-16 19:39:23 +00:00
}
static void
destroycon(struct constate *con) {
con->source = NULL;
if(0 <= con->fd)
close(con->fd);
con->fd = -1;
switch(con->type) {
case CON_SERV:
break;
2007-02-19 22:09:05 +00:00
case CON_CLIENT:
2007-05-24 05:46:23 +00:00
ipc_freemsgs( con->msgs );
2007-02-19 22:09:05 +00:00
freestrlist(con->u.client.files);
g_main_loop_quit(con->u.client.loop);
2006-07-16 19:39:23 +00:00
break;
}
}
static void
all_io_closed(GSource *source SHUTUP, void *vdata) {
struct constate *con = vdata;
destroycon(con);
}
static void
2007-05-24 05:46:23 +00:00
cli_io_sent(GSource *source SHUTUP, unsigned int id, void *vdata) {
struct constate_client *cli = &((struct constate*)vdata)->u.client;
2006-07-16 19:39:23 +00:00
2007-05-24 05:46:23 +00:00
if(0 < id && cli->msgid == id) {
*(cli->succeeded) = TRUE;
2006-07-16 19:39:23 +00:00
destroycon(vdata);
}
}
2007-05-24 05:46:23 +00:00
static void
smsg_add( enum ipc_msg id SHUTUP, benc_val_t * val, int64_t tag, void * arg )
{
2007-05-24 05:46:23 +00:00
struct constate * con = arg;
struct constate_serv * srv = &con->u.serv;
enum tr_torrent_action action;
benc_val_t * path;
int ii;
if( NULL == srv->core )
{
return;
}
if( NULL == val || TYPE_LIST != val->type )
{
simpleresp( con, tag, IPC_MSG_NOTSUP );
2007-05-24 05:46:23 +00:00
return;
}
2007-05-24 05:46:23 +00:00
action = toraddaction( tr_prefs_get( PREF_ID_ADDIPC ) );
for( ii = 0; ii < val->val.l.count; ii++ )
{
2007-05-24 05:46:23 +00:00
path = val->val.l.vals + ii;
if( TYPE_STR == path->type &&
/* XXX somehow escape invalid utf-8 */
g_utf8_validate( path->val.s.s, path->val.s.i, NULL ) )
{
2007-05-24 05:46:23 +00:00
tr_core_add( TR_CORE( srv->core ), path->val.s.s, action, FALSE );
}
}
2007-05-24 05:46:23 +00:00
tr_core_torrents_added( TR_CORE( srv->core ) );
/* XXX should send info response back with torrent ids */
simpleresp( con, IPC_MSG_OK, tag );
2007-05-24 05:46:23 +00:00
}
2007-05-24 05:46:23 +00:00
static void
smsg_quit( enum ipc_msg id SHUTUP, benc_val_t * val SHUTUP, int64_t tag SHUTUP,
void * arg SHUTUP )
{
struct constate * con = arg;
struct constate_serv * srv = &con->u.serv;
2007-05-24 05:46:23 +00:00
tr_core_quit( srv->core );
}
static void
smsg_info( enum ipc_msg id, benc_val_t * val, int64_t tag, void * arg )
{
struct constate * con = arg;
struct constate_serv * srv = &con->u.serv;
enum ipc_msg respid;
benc_val_t * ids, * types, * idval, packet, * pkval;
int typeflags, ii;
TrTorrent * tor;
uint8_t * buf;
size_t size;
if( NULL == srv->core )
{
return;
}
if( NULL == val || TYPE_DICT != val->type )
{
simpleresp( con, tag, IPC_MSG_NOTSUP );
return;
}
respid = ( IPC_MSG_GETINFO == id ? IPC_MSG_INFO : IPC_MSG_STAT );
ids = tr_bencDictFind( val, "id" );
types = tr_bencDictFind( val, "types" );
if( NULL == ids || TYPE_LIST != ids->type ||
NULL == types || TYPE_LIST != types->type )
{
simpleresp( con, tag, IPC_MSG_NOTSUP );
return;
}
typeflags = ipc_infotypes( respid, types );
pkval = ipc_initval( &con->ipc, respid, tag, &packet, TYPE_LIST );
if( NULL == pkval )
{
simpleresp( con, tag, IPC_MSG_FAIL );
return;
}
for( ii = 0; ids->val.l.count > ii; ii++ )
{
idval = &ids->val.l.vals[ii];
if( TYPE_INT != idval->type || !TORRENT_ID_VALID( idval->val.i ) ||
NULL == ( tor = findtor( srv->core, idval->val.i ) ) )
{
continue;
}
if( 0 > addinfo( tor, respid, idval->val.i, typeflags, pkval ) )
{
tr_bencFree( &packet );
simpleresp( con, tag, IPC_MSG_FAIL );
return;
}
}
buf = ipc_mkval( &packet, &size );
tr_bencFree( &packet );
if( NULL == buf )
{
simpleresp( con, tag, IPC_MSG_FAIL );
}
else
{
io_send_keepdata( con->source, buf, size );
}
}
static void
smsg_infoall( enum ipc_msg id, benc_val_t * val, int64_t tag, void * arg )
{
struct constate * con = arg;
struct constate_serv * srv = &con->u.serv;
enum ipc_msg respid;
benc_val_t packet, * pkval;
int typeflags;
GtkTreeModel * model;
GtkTreeIter iter;
int rowid;
TrTorrent * tor;
uint8_t * buf;
size_t size;
if( NULL == srv->core )
{
return;
}
if( NULL == val || TYPE_LIST != val->type )
{
simpleresp( con, tag, IPC_MSG_NOTSUP );
return;
}
respid = ( IPC_MSG_GETINFOALL == id ? IPC_MSG_INFO : IPC_MSG_STAT );
typeflags = ipc_infotypes( respid, val );
pkval = ipc_initval( &con->ipc, respid, tag, &packet, TYPE_LIST );
if( NULL == pkval )
{
simpleresp( con, tag, IPC_MSG_FAIL );
return;
}
model = tr_core_model( srv->core );
if( gtk_tree_model_get_iter_first( model, &iter ) )
{
do
{
gtk_tree_model_get( model, &iter, MC_ID, &rowid,
MC_TORRENT, &tor, -1 );
g_object_unref( tor );
if( 0 > addinfo( tor, respid, rowid, typeflags, pkval ) )
{
tr_bencFree( &packet );
simpleresp( con, tag, IPC_MSG_FAIL );
return;
}
}
while( gtk_tree_model_iter_next( model, &iter ) );
}
buf = ipc_mkval( &packet, &size );
tr_bencFree( &packet );
if( NULL == buf )
{
simpleresp( con, tag, IPC_MSG_FAIL );
}
else
{
io_send_keepdata( con->source, buf, size );
}
}
static int
addinfo( TrTorrent * tor, enum ipc_msg msgid, int torid, int types,
benc_val_t * val )
{
tr_info_t * inf;
tr_stat_t * st;
inf = tr_torrent_info( tor );
if( IPC_MSG_INFO == msgid )
{
return ipc_addinfo( val, torid, inf, types );
}
else
{
st = tr_torrent_stat( tor );
return ipc_addstat( val, torid, inf, st, types );
}
}
2007-05-24 05:46:23 +00:00
static void
all_default( enum ipc_msg id, benc_val_t * val SHUTUP, int64_t tag, void * arg )
{
switch( id )
{
case IPC_MSG_FAIL:
case IPC_MSG_NOTSUP:
case IPC_MSG_OK:
break;
case IPC_MSG_NOOP:
simpleresp( arg, IPC_MSG_OK, tag );
break;
default:
simpleresp( arg, IPC_MSG_NOTSUP, tag );
break;
}
}
static gboolean
simpleresp( struct constate * con, enum ipc_msg id, int64_t tag )
{
2007-05-24 05:46:23 +00:00
uint8_t * buf;
size_t size;
buf = ipc_mkempty( &con->ipc, &size, id, tag );
if( NULL == buf )
{
return FALSE;
}
io_send_keepdata( con->source, buf, size );
return TRUE;
}
static TrTorrent *
findtor( TrCore * core, int id )
{
GtkTreeModel * model;
GtkTreeIter iter;
int rowid;
TrTorrent * tor;
model = tr_core_model( core );
if( gtk_tree_model_get_iter_first( model, &iter ) )
{
do
{
gtk_tree_model_get( model, &iter, MC_ID, &rowid, -1 );
if( rowid == id )
{
gtk_tree_model_get( model, &iter, MC_TORRENT, &tor, -1 );
g_object_unref( tor );
return tor;
}
}
while( gtk_tree_model_iter_next( model, &iter ) );
}
return NULL;
}