summaryrefslogtreecommitdiff
path: root/src/client.c
blob: 6d22934e9d45061026b5fc5a224bcdf8fe3b98b5 (plain)
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
/*
 * Copyright (C) 2010 Xavier Claessens <xclaesse@gmail.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 * Boston, MA  02110-1301  USA
 */

#include "config.h"

#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include <glib/gstdio.h>
#include <gio/gunixsocketaddress.h>
#include <telepathy-glib/telepathy-glib.h>

#include "common.h"

static gboolean success = TRUE;
static GMainLoop *loop = NULL;
static gchar *unix_path = NULL;

static void
remove_unix_path (void)
{
  gchar *p;

  g_unlink (unix_path);
  p = g_strrstr (unix_path, G_DIR_SEPARATOR_S);
  *p = '\0';
  g_rmdir (unix_path);
  g_free (unix_path);
}

static void
throw_error (const GError *error)
{
  g_debug ("Error: %s", error ? error->message : "No error message");
  success = FALSE;
  g_main_loop_quit (loop);
}

static void
splice_cb (GIOStream *stream1,
    GIOStream *stream2,
    const GError *error,
    gpointer user_data)
{
  if (error != NULL)
    throw_error (error);
  else
    g_main_loop_quit (loop);
}

static void
ssh_socket_connected_cb (GObject *source_object,
    GAsyncResult *res,
    gpointer user_data)
{
  GSocketListener *listener = G_SOCKET_LISTENER (source_object);
  GSocketConnection *tube_connection = user_data;
  GSocketConnection *ssh_connection;
  GError *error = NULL;

  ssh_connection = g_socket_listener_accept_finish (listener, res, NULL, &error);
  if (ssh_connection == NULL)
    {
      throw_error (error);
      g_object_unref (tube_connection);
      return;
    }

  /* Splice tube and ssh connections */
  _g_io_stream_splice (G_IO_STREAM (tube_connection),
      G_IO_STREAM (ssh_connection), splice_cb, NULL);
}

static void
tube_socket_connected_cb (GObject *source_object,
    GAsyncResult *res,
    gpointer user_data)
{
  GSocketListener *listener = G_SOCKET_LISTENER (source_object);
  GSocketConnection *tube_connection;
  GSocket *socket = NULL;
  GInetAddress * inet_address = NULL;
  GSocketAddress *socket_address = NULL;
  guint port;
  GError *error = NULL;

  tube_connection = g_socket_listener_accept_finish (listener, res, NULL, &error);
  if (tube_connection == NULL)
    goto OUT;

  /* Create the IPv4 socket, and listen for connection on it */
  socket = g_socket_new (G_SOCKET_FAMILY_IPV4, G_SOCKET_TYPE_STREAM,
      G_SOCKET_PROTOCOL_DEFAULT, &error);
  if (socket == NULL)
    goto OUT;
  inet_address = g_inet_address_new_loopback (G_SOCKET_FAMILY_IPV4);
  socket_address = g_inet_socket_address_new (inet_address, 0);
  if (!g_socket_bind (socket, socket_address, FALSE, &error))
    goto OUT;
  if (!g_socket_listen (socket, &error))
    goto OUT;
  if (!g_socket_listener_add_socket (listener, socket, NULL, &error))
    goto OUT;

  /* Get the port on which we got bound */
  tp_clear_object (&socket_address);
  socket_address = g_socket_get_local_address (socket, &error);
  if (socket_address == NULL)
    goto OUT;
  port = g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (socket_address));

  g_socket_listener_accept_async (listener, NULL,
    ssh_socket_connected_cb, g_object_ref (tube_connection));

  /* Start ssh client, it will connect on our IPv4 socket */
  if (fork() == 0)
    {
      gchar *port_str;

      port_str = g_strdup_printf ("%d", port);
      execlp ("ssh", "ssh", "127.0.0.1", "-p", port_str, NULL);
    }

OUT:

  tp_clear_object (&tube_connection);
  tp_clear_object (&socket);
  tp_clear_object (&inet_address);
  tp_clear_object (&socket_address);
  g_clear_error (&error);
}

static void
offer_tube_cb (TpChannel *channel,
    const GError *error,
    gpointer user_data,
    GObject *weak_object)
{
  /* FIXME: If the offer failed, do we have to cancel the pending
   * g_socket_listener_accept_async() ? */
  if (error != NULL)
    throw_error (error);
}

static void
handle_channel (TpChannel *channel)
{
  gchar *dir;
  GSocketListener *listener = NULL;
  GSocket *socket = NULL;
  GSocketAddress *socket_address = NULL;
  GValue *address;
  GHashTable *parameters;
  GError *error = NULL;

  /* We are client side, but we have to offer a socket... So we offer an unix
   * socket on which the service side can connect. We also create an IPv4 socket
   * on which the ssh client can connect. When both sockets are connected,
   * we can forward all communications between them. */

  listener = g_socket_listener_new ();

  /* Create temporary file for our unix socket */
  dir = g_build_filename (g_get_tmp_dir (), "telepathy-ssh-XXXXXX", NULL);
  dir = mkdtemp (dir);
  unix_path = g_build_filename (dir, "unix-socket", NULL);
  g_atexit (remove_unix_path);
  g_free (dir);

  /* Create the unix socket, and listen for connection on it */
  socket = g_socket_new (G_SOCKET_FAMILY_UNIX, G_SOCKET_TYPE_STREAM,
      G_SOCKET_PROTOCOL_DEFAULT, &error);
  if (socket == NULL)
    goto OUT;
  socket_address = g_unix_socket_address_new (unix_path);
  if (!g_socket_bind (socket, socket_address, FALSE, &error))
    goto OUT;
  if (!g_socket_listen (socket, &error))
    goto OUT;
  if (!g_socket_listener_add_socket (listener, socket, NULL, &error))
    goto OUT;

  g_socket_listener_accept_async (listener, NULL,
    tube_socket_connected_cb, NULL);

  /* Offer the socket */
  address = tp_address_variant_from_g_socket_address (socket_address,
      TP_SOCKET_ADDRESS_TYPE_UNIX, &error);
  if (address == NULL)
    goto OUT;
  parameters = g_hash_table_new (NULL, NULL);
  tp_cli_channel_type_stream_tube_call_offer (channel, -1,
      TP_SOCKET_ADDRESS_TYPE_UNIX, address,
      TP_SOCKET_ACCESS_CONTROL_LOCALHOST, parameters,
      offer_tube_cb, NULL, NULL, NULL);
  tp_g_value_slice_free (address);
  g_hash_table_unref (parameters);

OUT:

  if (error != NULL)
    throw_error (error);

  tp_clear_object (&listener);
  tp_clear_object (&socket);
  tp_clear_object (&socket_address);
  g_clear_error (&error);
}

static void
got_channel_cb (TpSimpleHandler *handler,
    TpAccount *account,
    TpConnection *connection,
    GList *channels,
    GList *requests_satisfied,
    gint64 user_action_time,
    TpHandleChannelsContext *context,
    gpointer user_data)
{
  GList *l;

  for (l = channels; l != NULL; l = l->next)
    {
      TpChannel *channel = l->data;

      if (tp_strdiff (tp_channel_get_channel_type (channel),
          TP_IFACE_CHANNEL_TYPE_STREAM_TUBE))
        continue;

      handle_channel (channel);
    }

  tp_handle_channels_context_accept (context);
}

static void
channel_request_invalidated (TpProxy *proxy,
    guint domain,
    gint code,
    gchar *message,
    gpointer user_data)
{
  const GError *error;

  error = tp_proxy_get_invalidated (proxy);
  if (!g_error_matches (error, TP_DBUS_ERRORS, TP_DBUS_ERROR_OBJECT_REMOVED))
    throw_error (error);

  g_object_unref (proxy);
}

static void
request_proceed_cb (TpChannelRequest *request,
    const GError *error,
    gpointer user_data,
    GObject *weak_object)
{
  if (error != NULL)
    throw_error (error);
}

static void
create_channel_cb (TpChannelDispatcher *dispatcher,
    const gchar *request_path,
    const GError *error,
    gpointer user_data,
    GObject *weak_object)
{
  TpDBusDaemon *dbus;
  TpChannelRequest *request;
  GError *err = NULL;

  if (error != NULL)
    {
      throw_error (error);
      return;
    }

  dbus = tp_proxy_get_dbus_daemon (TP_PROXY (dispatcher));
  request = tp_channel_request_new (dbus, request_path, NULL, &err);
  if (request == NULL)
    {
      throw_error (err);
      g_clear_error (&err);
      return;
    }

  g_signal_connect (request, "invalidated",
      G_CALLBACK (channel_request_invalidated), NULL);

  tp_cli_channel_request_call_proceed (request, -1, request_proceed_cb,
      NULL, NULL, NULL);
}

typedef struct
{
  TpBaseClient *client;
  gchar *account_id;
  gchar *contact_id;

  GList *accounts;
  guint n_readying_connections;

  TpAccount *account;
} RequestData;

static void
request_channel (RequestData *data)
{
  TpDBusDaemon *dbus = NULL;
  TpChannelDispatcher *dispatcher = NULL;
  GHashTable *request = NULL;

  dbus = tp_dbus_daemon_dup (NULL);
  dispatcher = tp_channel_dispatcher_new (dbus);
  request = tp_asv_new (
      TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING,
        TP_IFACE_CHANNEL_TYPE_STREAM_TUBE,
      TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT,
        TP_HANDLE_TYPE_CONTACT,
      TP_PROP_CHANNEL_TARGET_ID, G_TYPE_STRING,
        data->contact_id,
      TP_PROP_CHANNEL_TYPE_STREAM_TUBE_SERVICE, G_TYPE_STRING, "ssh",
      NULL);

  tp_cli_channel_dispatcher_call_create_channel (dispatcher, -1,
      tp_proxy_get_object_path (TP_PROXY (data->account)), request, G_MAXINT64,
      tp_base_client_get_bus_name (data->client), create_channel_cb,
      NULL, NULL, NULL);

  g_object_unref (dbus);
  g_object_unref (dispatcher);
  g_hash_table_unref (request);
}

static void
chooser_contact (RequestData *data)
{
  if (data->contact_id == NULL)
    {
      gchar buffer[256];
      gchar *str;

      /* FIXME: Lists the contacts of the picked account */
      g_print ("Which contact ID to use? ");
      str = fgets (buffer, sizeof (buffer), stdin);
      if (str != NULL)
        {
          str[strlen (str) - 1] = '\0';
          data->contact_id = g_strdup (str);
        }
    }

  request_channel (data);
}

static void
chooser_account (RequestData *data)
{
  if (data->accounts == NULL)
    {
      g_print ("No suitable account, abort\n");
      g_main_loop_quit (loop);
      return;
    }

  /* If there is only one suitable account, use it. Otherwise, ask the user to
   * pick one. */
  if (data->accounts->next == NULL)
    {
      data->account = g_object_ref (data->accounts->data);
    }
  else
    {
      GList *l;
      guint count = 0;
      gchar buffer[10];
      gchar *str;

      for (l = data->accounts; l != NULL; l = l->next)
        {
          g_print ("%d) %s (%s)\n", ++count,
              tp_account_get_display_name (l->data),
              tp_account_get_protocol (l->data));
        }

      g_print ("Which account to use? ");
      str = fgets (buffer, sizeof (buffer), stdin);
      if (str != NULL)
        {
          str[strlen (str) - 1] = '\0';
          l = g_list_nth (data->accounts, atoi (str) - 1);
        }
      if (l == NULL)
        {
          g_print ("Invalid account number\n");
          g_main_loop_quit (loop);
          return;
        }
      data->account = g_object_ref (l->data);
    }

  g_assert (data->account != NULL);

  /* If the account id was not in the options, print it now. It makes easier to
  * copy/paste later. */
  if (data->account_id == NULL)
    {
      const gchar *account_path;

      account_path = tp_proxy_get_object_path (data->account);
      data->account_id = g_strdup (account_path +
          strlen (TP_ACCOUNT_OBJECT_PATH_BASE));

      g_print ("Going to use account: '%s'\n", data->account_id);
    }

  chooser_contact (data);
}

static void
connection_prepare_cb (GObject *object,
    GAsyncResult *res,
    gpointer user_data)
{
  TpConnection *connection = TP_CONNECTION (object);
  RequestData *data = user_data;
  gboolean suitable = FALSE;

  if (tp_proxy_prepare_finish (TP_PROXY (connection), res, NULL))
    {
      TpCapabilities *caps;
      GPtrArray *classes;
      guint i;

      /* Verify if that connection is suitable */
      caps = tp_connection_get_capabilities (connection);
      classes = tp_capabilities_get_channel_classes (caps);
      for (i = 0; i < classes->len; i++)
        {
          GValueArray *arr = g_ptr_array_index (classes, i);
          GHashTable *fixed;
          const gchar *chan_type;

          fixed = g_value_get_boxed (g_value_array_get_nth (arr, 0));
          chan_type = tp_asv_get_string (fixed, TP_PROP_CHANNEL_CHANNEL_TYPE);

          if (!tp_strdiff (chan_type, TP_IFACE_CHANNEL_TYPE_STREAM_TUBE))
            {
              suitable = TRUE;
              break;
            }
        }
    }

  if (!suitable)
    {
      GList *l;

      /* Remove the account that has that connection from the list */
      for (l = data->accounts; l != NULL; l = l->next)
        if (tp_account_get_connection (l->data) == connection)
          {
            g_object_unref (l->data);
            data->accounts = g_list_delete_link (data->accounts, l);
            break;
          }
    }

  if (--data->n_readying_connections == 0)
    chooser_account (data);
}

static void
account_manager_prepare_cb (GObject *object,
    GAsyncResult *res,
    gpointer user_data)
{
  TpAccountManager *manager = TP_ACCOUNT_MANAGER (object);
  RequestData *data = user_data;
  GList *l, *next;
  GError *error = NULL;

  if (!tp_proxy_prepare_finish (TP_PROXY (manager), res, &error))
    {
      throw_error (error);
      g_clear_error (&error);
      return;
    }

  /* We want to list all accounts which has a connection that have StreamTube
   * support. So first we prepare all connections, and we keep in
   * data->accounts those that are suitable. */

  data->accounts = tp_account_manager_get_valid_accounts (manager);
  g_list_foreach (data->accounts, (GFunc) g_object_ref, NULL);

  for (l = data->accounts; l != NULL; l = next)
    {
      GQuark features[] = { TP_CONNECTION_FEATURE_CAPABILITIES, 0 };
      TpAccount *account = l->data;
      TpConnection *connection;

      next = l->next;

      connection = tp_account_get_connection (account);
      if (connection == NULL)
        {
          g_object_unref (account);
          data->accounts = g_list_delete_link (data->accounts, l);
          continue;
        }

      data->n_readying_connections++;
      tp_proxy_prepare_async (TP_PROXY (connection), features,
          connection_prepare_cb, data);
    }

  if (data->n_readying_connections == 0)
    chooser_account (data);
}

static void
account_prepare_cb (GObject *object,
    GAsyncResult *res,
    gpointer user_data)
{
  TpAccount *account = TP_ACCOUNT (object);
  RequestData *data = user_data;
  GQuark features[] = { TP_CONNECTION_FEATURE_CAPABILITIES, 0 };
  TpConnection *connection;
  GError *error = NULL;

  /* We are in the case where an account was specified in options, so we have
   * only one candidate, if that accounts has no connection or the connection
   * has no StreamTube support, we'll fail. */

  if (!tp_proxy_prepare_finish (TP_PROXY (account), res, &error))
    {
      throw_error (error);
      return;
    }

  connection = tp_account_get_connection (account);
  if (connection == NULL)
    {
      g_debug ("Account not online");
      g_main_loop_quit (loop);
      return;
    }

  /* Prepare account's connection with caps feature */
  data->accounts = g_list_prepend (NULL, g_object_ref (account));
  data->n_readying_connections = 1;
  tp_proxy_prepare_async (TP_PROXY (connection), features,
      connection_prepare_cb, data);
}

int
main (gint argc, gchar *argv[])
{
  TpDBusDaemon *dbus = NULL;
  GError *error = NULL;
  RequestData data = { 0, };
  GOptionContext *optcontext;
  GOptionEntry options[] = {
      { "account", 'a',
        0, G_OPTION_ARG_STRING, &data.account_id,
        "The account ID",
        NULL },
      { "contact", 'c',
        0, G_OPTION_ARG_STRING, &data.contact_id,
        "The contact ID",
        NULL },
      { NULL }
  };

  g_type_init ();

  optcontext = g_option_context_new ("- Telepaty-ssh");
  g_option_context_add_main_entries (optcontext, options, NULL);
  if (!g_option_context_parse (optcontext, &argc, &argv, &error))
    {
      g_print ("%s\nRun '%s --help' to see a full list of available command "
          "line options.\n", error->message, argv[0]);
      return EXIT_FAILURE;
    }
  g_option_context_free (optcontext);

  g_set_application_name (PACKAGE_NAME);

  /* Register an handler for the StreamTube channel we'll request */
  dbus = tp_dbus_daemon_dup (&error);
  if (dbus == NULL)
    goto OUT;

  data.client = tp_simple_handler_new (dbus, FALSE, FALSE, "TelepathySSHClient",
      TRUE, got_channel_cb, NULL, NULL);

  tp_base_client_take_handler_filter (data.client, tp_asv_new (
      TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING,
        TP_IFACE_CHANNEL_TYPE_STREAM_TUBE,
      TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT,
        TP_HANDLE_TYPE_CONTACT,
      TP_PROP_CHANNEL_TYPE_STREAM_TUBE_SERVICE, G_TYPE_STRING,
        "ssh",
      TP_PROP_CHANNEL_REQUESTED, G_TYPE_BOOLEAN,
        TRUE,
      NULL));

  if (!tp_base_client_register (data.client, &error))
    goto OUT;

  /* If an account id was specified in options, then prepare it, otherwise
   * we get the account manager to get a list of all accounts */
  if (data.account_id != NULL)
    {
      gchar *account_path;

      account_path = g_strconcat (TP_ACCOUNT_OBJECT_PATH_BASE, data.account_id,
          NULL);
      data.account = tp_account_new (dbus, account_path, &error);
      if (data.account == NULL)
        goto OUT;

      tp_proxy_prepare_async (TP_PROXY (data.account), NULL,
          account_prepare_cb, &data);

      g_free (account_path);
    }
  else
    {
      TpAccountManager *manager;

      manager = tp_account_manager_new (dbus);
      tp_proxy_prepare_async (TP_PROXY (manager), NULL,
          account_manager_prepare_cb, &data);

      g_object_unref (manager);
    }

  loop = g_main_loop_new (NULL, FALSE);
  g_main_loop_run (loop);

OUT:

  if (error != NULL)
    {
      success = FALSE;
      g_debug ("Error: %s", error->message);
    }

  tp_clear_pointer (&loop, g_main_loop_unref);
  tp_clear_object (&dbus);
  g_clear_error (&error);

  tp_clear_object (&data.client);
  g_free (data.account_id);
  g_free (data.contact_id);
  g_list_foreach (data.accounts, (GFunc) g_object_unref, NULL);
  g_list_free (data.accounts);
  tp_clear_object (&data.account);

  return success ? EXIT_SUCCESS : EXIT_FAILURE;
}