]> ToastFreeware Gitweb - gregoa/bti.git/blob - bti.c
get_string*: fix a memory leak
[gregoa/bti.git] / bti.c
1 /*
2  * Copyright (C) 2008-2011 Greg Kroah-Hartman <greg@kroah.com>
3  * Copyright (C) 2009 Bart Trojanowski <bart@jukie.net>
4  * Copyright (C) 2009-2010 Amir Mohammad Saied <amirsaied@gmail.com>
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18  */
19
20 #define _GNU_SOURCE
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <stddef.h>
25 #include <string.h>
26 #include <getopt.h>
27 #include <errno.h>
28 #include <ctype.h>
29 #include <fcntl.h>
30 #include <unistd.h>
31 #include <time.h>
32 #include <sys/stat.h>
33 #include <sys/types.h>
34 #include <sys/wait.h>
35 #include <curl/curl.h>
36 #include <libxml/xmlmemory.h>
37 #include <libxml/parser.h>
38 #include <libxml/tree.h>
39 #include <pcre.h>
40 #include <termios.h>
41 #include <dlfcn.h>
42 #include <oauth.h>
43 #include "bti.h"
44
45 #define zalloc(size)    calloc(size, 1)
46
47 #define dbg(format, arg...)                                             \
48         do {                                                            \
49                 if (debug)                                              \
50                         fprintf(stdout, "bti: %s: " format , __func__ , \
51                                 ## arg);                                \
52         } while (0)
53
54
55 int debug;
56
57 static void display_help(void)
58 {
59         fprintf(stdout, "bti - send tweet to twitter or identi.ca\n"
60                 "Version: %s\n"
61                 "Usage:\n"
62                 "  bti [options]\n"
63                 "options are:\n"
64                 "  --account accountname\n"
65                 "  --password password\n"
66                 "  --action action\n"
67                 "    ('update', 'friends', 'public', 'replies', or 'user')\n"
68                 "  --user screenname\n"
69                 "  --group groupname\n"
70                 "  --proxy PROXY:PORT\n"
71                 "  --host HOST\n"
72                 "  --logfile logfile\n"
73                 "  --config configfile\n"
74                 "  --replyto ID\n"
75                 "  --retweet ID\n"
76                 "  --shrink-urls\n"
77                 "  --page PAGENUMBER\n"
78                 "  --column COLUMNWIDTH\n"
79                 "  --bash\n"
80                 "  --background\n"
81                 "  --debug\n"
82                 "  --verbose\n"
83                 "  --dry-run\n"
84                 "  --version\n"
85                 "  --help\n", VERSION);
86 }
87
88 static void display_version(void)
89 {
90         fprintf(stdout, "bti - version %s\n", VERSION);
91 }
92
93 static char *get_string(const char *name)
94 {
95         char *temp;
96         char *string;
97
98         string = zalloc(1000);
99         if (!string)
100                 exit(1);
101         if (name != NULL)
102                 fprintf(stdout, "%s", name);
103         if (!fgets(string, 999, stdin)) {
104                 free(string);
105                 return NULL;
106         }
107         temp = strchr(string, '\n');
108         if (temp)
109                 *temp = '\0';
110         return string;
111 }
112
113 /*
114  * Try to get a handle to a readline function from a variety of different
115  * libraries.  If nothing is present on the system, then fall back to an
116  * internal one.
117  *
118  * Logic originally based off of code in the e2fsutils package in the
119  * lib/ss/get_readline.c file, which is licensed under the MIT license.
120  *
121  * This keeps us from having to relicense the bti codebase if readline
122  * ever changes its license, as there is no link-time dependency.
123  * It is a run-time thing only, and we handle any readline-like library
124  * in the same manner, making bti not be a derivative work of any
125  * other program.
126  */
127 static void session_readline_init(struct session *session)
128 {
129         /* Libraries we will try to use for readline/editline functionality */
130         const char *libpath = "libreadline.so.6:libreadline.so.5:"
131                                 "libreadline.so.4:libreadline.so:libedit.so.2:"
132                                 "libedit.so:libeditline.so.0:libeditline.so";
133         void *handle = NULL;
134         char *tmp, *cp, *next;
135         int (*bind_key)(int, void *);
136         void (*insert)(void);
137
138         /* default to internal function if we can't or won't find anything */
139         session->readline = get_string;
140         if (!isatty(0))
141                 return;
142         session->interactive = 1;
143
144         tmp = malloc(strlen(libpath)+1);
145         if (!tmp)
146                 return;
147         strcpy(tmp, libpath);
148         for (cp = tmp; cp; cp = next) {
149                 next = strchr(cp, ':');
150                 if (next)
151                         *next++ = 0;
152                 if (*cp == 0)
153                         continue;
154                 handle = dlopen(cp, RTLD_NOW);
155                 if (handle) {
156                         dbg("Using %s for readline library\n", cp);
157                         break;
158                 }
159         }
160         free(tmp);
161         if (!handle) {
162                 dbg("No readline library found.\n");
163                 return;
164         }
165
166         session->readline_handle = handle;
167         session->readline = (char *(*)(const char *))dlsym(handle, "readline");
168         if (session->readline == NULL) {
169                 /* something odd happened, default back to internal stuff */
170                 session->readline_handle = NULL;
171                 session->readline = get_string;
172                 return;
173         }
174
175         /*
176          * If we found a library, turn off filename expansion
177          * as that makes no sense from within bti.
178          */
179         bind_key = (int (*)(int, void *))dlsym(handle, "rl_bind_key");
180         insert = (void (*)(void))dlsym(handle, "rl_insert");
181         if (bind_key && insert)
182                 bind_key('\t', insert);
183 }
184
185 static void session_readline_cleanup(struct session *session)
186 {
187         if (session->readline_handle)
188                 dlclose(session->readline_handle);
189 }
190
191 static struct session *session_alloc(void)
192 {
193         struct session *session;
194
195         session = zalloc(sizeof(*session));
196         if (!session)
197                 return NULL;
198         return session;
199 }
200
201 static void session_free(struct session *session)
202 {
203         if (!session)
204                 return;
205         free(session->retweet);
206         free(session->replyto);
207         free(session->password);
208         free(session->account);
209         free(session->consumer_key);
210         free(session->consumer_secret);
211         free(session->access_token_key);
212         free(session->access_token_secret);
213         free(session->tweet);
214         free(session->proxy);
215         free(session->time);
216         free(session->homedir);
217         free(session->user);
218         free(session->group);
219         free(session->hosturl);
220         free(session->hostname);
221         free(session->configfile);
222         free(session);
223 }
224
225 static struct bti_curl_buffer *bti_curl_buffer_alloc(enum action action)
226 {
227         struct bti_curl_buffer *buffer;
228
229         buffer = zalloc(sizeof(*buffer));
230         if (!buffer)
231                 return NULL;
232
233         /* start out with a data buffer of 1 byte to
234          * make the buffer fill logic simpler */
235         buffer->data = zalloc(1);
236         if (!buffer->data) {
237                 free(buffer);
238                 return NULL;
239         }
240         buffer->length = 0;
241         buffer->action = action;
242         return buffer;
243 }
244
245 static void bti_curl_buffer_free(struct bti_curl_buffer *buffer)
246 {
247         if (!buffer)
248                 return;
249         free(buffer->data);
250         free(buffer);
251 }
252
253 const char twitter_host[]  = "http://api.twitter.com/1/statuses";
254 const char identica_host[] = "https://identi.ca/api/statuses";
255 const char twitter_name[]  = "twitter";
256 const char identica_name[] = "identi.ca";
257
258 static const char twitter_request_token_uri[]  = "http://twitter.com/oauth/request_token";
259 static const char twitter_access_token_uri[]   = "http://twitter.com/oauth/access_token";
260 static const char twitter_authorize_uri[]      = "http://twitter.com/oauth/authorize?oauth_token=";
261 static const char identica_request_token_uri[] = "http://identi.ca/api/oauth/request_token?oauth_callback=oob";
262 static const char identica_access_token_uri[]  = "http://identi.ca/api/oauth/access_token";
263 static const char identica_authorize_uri[]     = "http://identi.ca/api/oauth/authorize?oauth_token=";
264
265 static const char user_uri[]     = "/user_timeline/";
266 static const char update_uri[]   = "/update.xml";
267 static const char public_uri[]   = "/public_timeline.xml";
268 static const char friends_uri[]  = "/friends_timeline.xml";
269 static const char mentions_uri[] = "/mentions.xml";
270 static const char replies_uri[]  = "/replies.xml";
271 static const char retweet_uri[]  = "/retweet/";
272 static const char group_uri[]    = "/../statusnet/groups/timeline/";
273
274 static const char config_default[]      = "/etc/bti";
275 static const char config_user_default[] = ".bti";
276
277 static CURL *curl_init(void)
278 {
279         CURL *curl;
280
281         curl = curl_easy_init();
282         if (!curl) {
283                 fprintf(stderr, "Can not init CURL!\n");
284                 return NULL;
285         }
286         /* some ssl sanity checks on the connection we are making */
287         curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
288         curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
289         return curl;
290 }
291
292 /* The final place data is sent to the screen/pty/tty */
293 static void bti_output_line(struct session *session, xmlChar *user,
294                             xmlChar *id, xmlChar *created, xmlChar *text)
295 {
296         if (session->verbose)
297                 printf("[%*s] {%s} (%.16s) %s\n", -session->column_output, user,
298                                 id, created, text);
299         else
300                 printf("[%*s] %s\n", -session->column_output, user, text);
301 }
302
303 static void parse_statuses(struct session *session,
304                            xmlDocPtr doc, xmlNodePtr current)
305 {
306         xmlChar *text = NULL;
307         xmlChar *user = NULL;
308         xmlChar *created = NULL;
309         xmlChar *id = NULL;
310         xmlNodePtr userinfo;
311
312         current = current->xmlChildrenNode;
313         while (current != NULL) {
314                 if (current->type == XML_ELEMENT_NODE) {
315                         if (!xmlStrcmp(current->name, (const xmlChar *)"created_at"))
316                                 created = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
317                         if (!xmlStrcmp(current->name, (const xmlChar *)"text"))
318                                 text = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
319                         if (!xmlStrcmp(current->name, (const xmlChar *)"id"))
320                                 id = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
321                         if (!xmlStrcmp(current->name, (const xmlChar *)"user")) {
322                                 userinfo = current->xmlChildrenNode;
323                                 while (userinfo != NULL) {
324                                         if ((!xmlStrcmp(userinfo->name, (const xmlChar *)"screen_name"))) {
325                                                 if (user)
326                                                         xmlFree(user);
327                                                 user = xmlNodeListGetString(doc, userinfo->xmlChildrenNode, 1);
328                                         }
329                                         userinfo = userinfo->next;
330                                 }
331                         }
332
333                         if (user && text && created && id) {
334                                 bti_output_line(session, user, id,
335                                                 created, text);
336                                 xmlFree(user);
337                                 xmlFree(text);
338                                 xmlFree(created);
339                                 xmlFree(id);
340                                 user = NULL;
341                                 text = NULL;
342                                 created = NULL;
343                                 id = NULL;
344                         }
345                 }
346                 current = current->next;
347         }
348
349         return;
350 }
351
352 static void parse_timeline(char *document, struct session *session)
353 {
354         xmlDocPtr doc;
355         xmlNodePtr current;
356
357         doc = xmlReadMemory(document, strlen(document), "timeline.xml",
358                             NULL, XML_PARSE_NOERROR);
359         if (doc == NULL)
360                 return;
361
362         current = xmlDocGetRootElement(doc);
363         if (current == NULL) {
364                 fprintf(stderr, "empty document\n");
365                 xmlFreeDoc(doc);
366                 return;
367         }
368
369         if (xmlStrcmp(current->name, (const xmlChar *) "statuses")) {
370                 fprintf(stderr, "unexpected document type\n");
371                 xmlFreeDoc(doc);
372                 return;
373         }
374
375         current = current->xmlChildrenNode;
376         while (current != NULL) {
377                 if ((!xmlStrcmp(current->name, (const xmlChar *)"status")))
378                         parse_statuses(session, doc, current);
379                 current = current->next;
380         }
381         xmlFreeDoc(doc);
382
383         return;
384 }
385
386 static size_t curl_callback(void *buffer, size_t size, size_t nmemb,
387                             void *userp)
388 {
389         struct bti_curl_buffer *curl_buf = userp;
390         size_t buffer_size = size * nmemb;
391         char *temp;
392
393         if ((!buffer) || (!buffer_size) || (!curl_buf))
394                 return -EINVAL;
395
396         /* add to the data we already have */
397         temp = zalloc(curl_buf->length + buffer_size + 1);
398         if (!temp)
399                 return -ENOMEM;
400
401         memcpy(temp, curl_buf->data, curl_buf->length);
402         free(curl_buf->data);
403         curl_buf->data = temp;
404         memcpy(&curl_buf->data[curl_buf->length], (char *)buffer, buffer_size);
405         curl_buf->length += buffer_size;
406         if (curl_buf->action)
407                 parse_timeline(curl_buf->data, curl_buf->session);
408
409         dbg("%s\n", curl_buf->data);
410
411         return buffer_size;
412 }
413
414 static int parse_osp_reply(const char *reply, char **token, char **secret)
415 {
416         int rc;
417         int retval = 1;
418         char **rv = NULL;
419         rc = oauth_split_url_parameters(reply, &rv);
420         qsort(rv, rc, sizeof(char *), oauth_cmpstringp);
421         if (rc == 2 || rc == 4) {
422                 if (!strncmp(rv[0], "oauth_token=", 11) &&
423                     !strncmp(rv[1], "oauth_token_secret=", 18)) {
424                         if (token)
425                                 *token = strdup(&(rv[0][12]));
426                         if (secret)
427                                 *secret = strdup(&(rv[1][19]));
428
429                         retval = 0;
430                 }
431         } else if (rc == 3) {
432                 if (!strncmp(rv[1], "oauth_token=", 11) &&
433                     !strncmp(rv[2], "oauth_token_secret=", 18)) {
434                         if (token)
435                                 *token = strdup(&(rv[1][12]));
436                         if (secret)
437                                 *secret = strdup(&(rv[2][19]));
438
439                         retval = 0;
440                 }
441         }
442
443         dbg("token: %s\n", *token);
444         dbg("secret: %s\n", *secret);
445
446         if (rv)
447                 free(rv);
448
449         return retval;
450 }
451
452 static int request_access_token(struct session *session)
453 {
454         char *post_params = NULL;
455         char *request_url = NULL;
456         char *reply       = NULL;
457         char *at_key      = NULL;
458         char *at_secret   = NULL;
459         char *verifier    = NULL;
460         char at_uri[90];
461
462         if (!session)
463                 return -EINVAL;
464
465         if (session->host == HOST_TWITTER)
466                 request_url = oauth_sign_url2(
467                                 twitter_request_token_uri, NULL,
468                                 OA_HMAC, NULL, session->consumer_key,
469                                 session->consumer_secret, NULL, NULL);
470         else if (session->host == HOST_IDENTICA)
471                 request_url = oauth_sign_url2(
472                                 identica_request_token_uri, NULL,
473                                 OA_HMAC, NULL, session->consumer_key,
474                                 session->consumer_secret, NULL, NULL);
475         reply = oauth_http_get(request_url, post_params);
476
477         if (request_url)
478                 free(request_url);
479
480         if (post_params)
481                 free(post_params);
482
483         if (!reply)
484                 return 1;
485
486         if (parse_osp_reply(reply, &at_key, &at_secret))
487                 return 1;
488
489         free(reply);
490
491         fprintf(stdout,
492                 "Please open the following link in your browser, and "
493                 "allow 'bti' to access your account. Then paste "
494                 "back the provided PIN in here.\n");
495         if (session->host == HOST_TWITTER) {
496                 fprintf(stdout, "%s%s\nPIN: ", twitter_authorize_uri, at_key);
497                 verifier = session->readline(NULL);
498                 sprintf(at_uri, "%s?oauth_verifier=%s",
499                         twitter_access_token_uri, verifier);
500         } else if (session->host == HOST_IDENTICA) {
501                 fprintf(stdout, "%s%s\nPIN: ", identica_authorize_uri, at_key);
502                 verifier = session->readline(NULL);
503                 sprintf(at_uri, "%s?oauth_verifier=%s",
504                         identica_access_token_uri, verifier);
505         }
506         request_url = oauth_sign_url2(at_uri, NULL, OA_HMAC, NULL,
507                                       session->consumer_key,
508                                       session->consumer_secret,
509                                       at_key, at_secret);
510         reply = oauth_http_get(request_url, post_params);
511
512         if (!reply)
513                 return 1;
514
515         if (parse_osp_reply(reply, &at_key, &at_secret))
516                 return 1;
517
518         free(reply);
519
520         fprintf(stdout,
521                 "Please put these two lines in your bti "
522                 "configuration file (~/.bti):\n"
523                 "access_token_key=%s\n"
524                 "access_token_secret=%s\n",
525                 at_key, at_secret);
526
527         return 0;
528 }
529
530 static int send_request(struct session *session)
531 {
532         char endpoint[500];
533         char user_password[500];
534         char data[500];
535         struct bti_curl_buffer *curl_buf;
536         CURL *curl = NULL;
537         CURLcode res;
538         struct curl_httppost *formpost = NULL;
539         struct curl_httppost *lastptr = NULL;
540         struct curl_slist *slist = NULL;
541         char *req_url = NULL;
542         char *reply = NULL;
543         char *postarg = NULL;
544         char *escaped_tweet = NULL;
545         int is_post = 0;
546
547         if (!session)
548                 return -EINVAL;
549
550         if (!session->hosturl)
551                 session->hosturl = strdup(twitter_host);
552
553         if (session->no_oauth || session->guest) {
554                 curl_buf = bti_curl_buffer_alloc(session->action);
555                 if (!curl_buf)
556                         return -ENOMEM;
557                 curl_buf->session = session;
558
559                 curl = curl_init();
560                 if (!curl)
561                         return -EINVAL;
562
563                 if (!session->hosturl)
564                         session->hosturl = strdup(twitter_host);
565
566                 switch (session->action) {
567                 case ACTION_UPDATE:
568                         snprintf(user_password, sizeof(user_password), "%s:%s",
569                                  session->account, session->password);
570                         snprintf(data, sizeof(data), "status=\"%s\"",
571                                  session->tweet);
572                         curl_formadd(&formpost, &lastptr,
573                                      CURLFORM_COPYNAME, "status",
574                                      CURLFORM_COPYCONTENTS, session->tweet,
575                                      CURLFORM_END);
576
577                         curl_formadd(&formpost, &lastptr,
578                                      CURLFORM_COPYNAME, "source",
579                                      CURLFORM_COPYCONTENTS, "bti",
580                                      CURLFORM_END);
581
582                         if (session->replyto)
583                                 curl_formadd(&formpost, &lastptr,
584                                              CURLFORM_COPYNAME,
585                                              "in_reply_to_status_id",
586                                              CURLFORM_COPYCONTENTS,
587                                              session->replyto,
588                                              CURLFORM_END);
589
590                         curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost);
591                         slist = curl_slist_append(slist, "Expect:");
592                         curl_easy_setopt(curl, CURLOPT_HTTPHEADER, slist);
593
594                         sprintf(endpoint, "%s%s", session->hosturl, update_uri);
595                         curl_easy_setopt(curl, CURLOPT_URL, endpoint);
596                         curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
597                         break;
598
599                 case ACTION_FRIENDS:
600                         snprintf(user_password, sizeof(user_password), "%s:%s",
601                                  session->account, session->password);
602                         sprintf(endpoint, "%s%s?page=%d", session->hosturl,
603                                         friends_uri, session->page);
604                         curl_easy_setopt(curl, CURLOPT_URL, endpoint);
605                         curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
606                         break;
607
608                 case ACTION_USER:
609                         sprintf(endpoint, "%s%s%s.xml?page=%d", session->hosturl,
610                                 user_uri, session->user, session->page);
611                         curl_easy_setopt(curl, CURLOPT_URL, endpoint);
612                         break;
613
614                 case ACTION_REPLIES:
615                         snprintf(user_password, sizeof(user_password), "%s:%s",
616                                  session->account, session->password);
617                         sprintf(endpoint, "%s%s?page=%d", session->hosturl,
618                                 replies_uri, session->page);
619                         curl_easy_setopt(curl, CURLOPT_URL, endpoint);
620                         curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
621                         break;
622
623                 case ACTION_PUBLIC:
624                         sprintf(endpoint, "%s%s?page=%d", session->hosturl,
625                                 public_uri, session->page);
626                         curl_easy_setopt(curl, CURLOPT_URL, endpoint);
627                         break;
628
629                 case ACTION_GROUP:
630                         sprintf(endpoint, "%s%s%s.xml?page=%d",
631                                 session->hosturl, group_uri, session->group,
632                                 session->page);
633                         curl_easy_setopt(curl, CURLOPT_URL, endpoint);
634                         break;
635
636                 default:
637                         break;
638                 }
639
640                 if (session->proxy)
641                         curl_easy_setopt(curl, CURLOPT_PROXY, session->proxy);
642
643                 if (debug)
644                         curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
645
646                 dbg("user_password = %s\n", user_password);
647                 dbg("data = %s\n", data);
648                 dbg("proxy = %s\n", session->proxy);
649
650                 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curl_callback);
651                 curl_easy_setopt(curl, CURLOPT_WRITEDATA, curl_buf);
652                 if (!session->dry_run) {
653                         res = curl_easy_perform(curl);
654                         if (!session->background) {
655                                 xmlDocPtr doc;
656                                 xmlNodePtr current;
657
658                                 if (res) {
659                                         fprintf(stderr, "error(%d) trying to "
660                                                 "perform operation\n", res);
661                                         return -EINVAL;
662                                 }
663
664                                 doc = xmlReadMemory(curl_buf->data,
665                                                     curl_buf->length,
666                                                     "response.xml", NULL,
667                                                     XML_PARSE_NOERROR);
668                                 if (doc == NULL)
669                                         return -EINVAL;
670
671                                 current = xmlDocGetRootElement(doc);
672                                 if (current == NULL) {
673                                         fprintf(stderr, "empty document\n");
674                                         xmlFreeDoc(doc);
675                                         return -EINVAL;
676                                 }
677
678                                 if (xmlStrcmp(current->name, (const xmlChar *)"status")) {
679                                         fprintf(stderr, "unexpected document type\n");
680                                         xmlFreeDoc(doc);
681                                         return -EINVAL;
682                                 }
683
684                                 xmlFreeDoc(doc);
685                         }
686                 }
687
688                 curl_easy_cleanup(curl);
689                 if (session->action == ACTION_UPDATE)
690                         curl_formfree(formpost);
691                 bti_curl_buffer_free(curl_buf);
692         } else {
693                 switch (session->action) {
694                 case ACTION_UPDATE:
695                         escaped_tweet = oauth_url_escape(session->tweet);
696                         if (session->replyto) {
697                                 sprintf(endpoint,
698                                         "%s%s?status=%s&in_reply_to_status_id=%s",
699                                         session->hosturl, update_uri,
700                                         escaped_tweet, session->replyto);
701                         } else {
702                                 sprintf(endpoint, "%s%s?status=%s",
703                                         session->hosturl, update_uri,
704                                         escaped_tweet);
705                         }
706
707                         is_post = 1;
708                         break;
709                 case ACTION_USER:
710                         sprintf(endpoint, "%s%s%s.xml?page=%d",
711                                 session->hosturl, user_uri, session->user,
712                                 session->page);
713                         break;
714                 case ACTION_REPLIES:
715                         sprintf(endpoint, "%s%s?page=%d", session->hosturl,
716                                 mentions_uri, session->page);
717                         break;
718                 case ACTION_PUBLIC:
719                         sprintf(endpoint, "%s%s?page=%d", session->hosturl,
720                                 public_uri, session->page);
721                         break;
722                 case ACTION_GROUP:
723                         sprintf(endpoint, "%s%s%s.xml?page=%d",
724                                 session->hosturl, group_uri, session->group,
725                                 session->page);
726                         break;
727                 case ACTION_FRIENDS:
728                         sprintf(endpoint, "%s%s?page=%d", session->hosturl,
729                                 friends_uri, session->page);
730                         break;
731                 case ACTION_RETWEET:
732                         sprintf(endpoint, "%s%s%s.xml", session->hosturl,
733                                 retweet_uri, session->retweet);
734                         is_post = 1;
735                         break;
736                 default:
737                         break;
738                 }
739
740                 dbg("%s\n", endpoint);
741                 if (!session->dry_run) {
742                         if (is_post) {
743                                 req_url = oauth_sign_url2(endpoint, &postarg, OA_HMAC,
744                                                           NULL, session->consumer_key,
745                                                           session->consumer_secret,
746                                                           session->access_token_key,
747                                                           session->access_token_secret);
748                                 reply = oauth_http_post(req_url, postarg);
749                         } else {
750                                 req_url = oauth_sign_url2(endpoint, NULL, OA_HMAC, NULL,
751                                                           session->consumer_key,
752                                                           session->consumer_secret,
753                                                           session->access_token_key,
754                                                           session->access_token_secret);
755                                 reply = oauth_http_get(req_url, postarg);
756                         }
757
758                         dbg("%s\n", req_url);
759                         dbg("%s\n", reply);
760                         if (req_url)
761                                 free(req_url);
762                 }
763
764                 if (!reply) {
765                         fprintf(stderr, "Error retrieving from URL (%s)\n", endpoint);
766                         return -EIO;
767                 }
768
769                 if ((session->action != ACTION_UPDATE) &&
770                                 (session->action != ACTION_RETWEET))
771                         parse_timeline(reply, session);
772         }
773         return 0;
774 }
775
776 static void log_session(struct session *session, int retval)
777 {
778         FILE *log_file;
779         char *filename;
780
781         /* Only log something if we have a log file set */
782         if (!session->logfile)
783                 return;
784
785         filename = alloca(strlen(session->homedir) +
786                           strlen(session->logfile) + 3);
787
788         sprintf(filename, "%s/%s", session->homedir, session->logfile);
789
790         log_file = fopen(filename, "a+");
791         if (log_file == NULL)
792                 return;
793
794         switch (session->action) {
795         case ACTION_UPDATE:
796                 if (retval)
797                         fprintf(log_file, "%s: host=%s tweet failed\n",
798                                 session->time, session->hostname);
799                 else
800                         fprintf(log_file, "%s: host=%s tweet=%s\n",
801                                 session->time, session->hostname,
802                                 session->tweet);
803                 break;
804         case ACTION_FRIENDS:
805                 fprintf(log_file, "%s: host=%s retrieving friends timeline\n",
806                         session->time, session->hostname);
807                 break;
808         case ACTION_USER:
809                 fprintf(log_file, "%s: host=%s retrieving %s's timeline\n",
810                         session->time, session->hostname, session->user);
811                 break;
812         case ACTION_REPLIES:
813                 fprintf(log_file, "%s: host=%s retrieving replies\n",
814                         session->time, session->hostname);
815                 break;
816         case ACTION_PUBLIC:
817                 fprintf(log_file, "%s: host=%s retrieving public timeline\n",
818                         session->time, session->hostname);
819                 break;
820         case ACTION_GROUP:
821                 fprintf(log_file, "%s: host=%s retrieving group timeline\n",
822                         session->time, session->hostname);
823                 break;
824         default:
825                 break;
826         }
827
828         fclose(log_file);
829 }
830
831 static char *get_string_from_stdin(void)
832 {
833         char *temp;
834         char *string;
835
836         string = zalloc(1000);
837         if (!string)
838                 return NULL;
839
840         if (!fgets(string, 999, stdin)) {
841                 free(string);
842                 return NULL;
843         }
844         temp = strchr(string, '\n');
845         if (temp)
846                 *temp = '\0';
847         return string;
848 }
849
850 static void read_password(char *buf, size_t len, char *host)
851 {
852         char pwd[80];
853         int retval;
854         struct termios old;
855         struct termios tp;
856
857         tcgetattr(0, &tp);
858         old = tp;
859
860         tp.c_lflag &= (~ECHO);
861         tcsetattr(0, TCSANOW, &tp);
862
863         fprintf(stdout, "Enter password for %s: ", host);
864         fflush(stdout);
865         tcflow(0, TCOOFF);
866         retval = scanf("%79s", pwd);
867         tcflow(0, TCOON);
868         fprintf(stdout, "\n");
869
870         tcsetattr(0, TCSANOW, &old);
871
872         strncpy(buf, pwd, len);
873         buf[len-1] = '\0';
874 }
875
876 static int find_urls(const char *tweet, int **pranges)
877 {
878         /*
879          * magic obtained from
880          * http://www.geekpedia.com/KB65_How-to-validate-an-URL-using-RegEx-in-Csharp.html
881          */
882         static const char *re_magic =
883                 "(([a-zA-Z][0-9a-zA-Z+\\-\\.]*:)/{1,3}"
884                 "[0-9a-zA-Z;/~?:@&=+$\\.\\-_'()%]+)"
885                 "(#[0-9a-zA-Z;/?:@&=+$\\.\\-_!~*'()%]+)?";
886         pcre *re;
887         const char *errptr;
888         int erroffset;
889         int ovector[10] = {0,};
890         const size_t ovsize = sizeof(ovector)/sizeof(*ovector);
891         int startoffset, tweetlen;
892         int i, rc;
893         int rbound = 10;
894         int rcount = 0;
895         int *ranges = malloc(sizeof(int) * rbound);
896
897         re = pcre_compile(re_magic,
898                         PCRE_NO_AUTO_CAPTURE,
899                         &errptr, &erroffset, NULL);
900         if (!re) {
901                 fprintf(stderr, "pcre_compile @%u: %s\n", erroffset, errptr);
902                 exit(1);
903         }
904
905         tweetlen = strlen(tweet);
906         for (startoffset = 0; startoffset < tweetlen; ) {
907
908                 rc = pcre_exec(re, NULL, tweet, strlen(tweet), startoffset, 0,
909                                 ovector, ovsize);
910                 if (rc == PCRE_ERROR_NOMATCH)
911                         break;
912
913                 if (rc < 0) {
914                         fprintf(stderr, "pcre_exec @%u: %s\n",
915                                 erroffset, errptr);
916                         exit(1);
917                 }
918
919                 for (i = 0; i < rc; i += 2) {
920                         if ((rcount+2) == rbound) {
921                                 rbound *= 2;
922                                 ranges = realloc(ranges, sizeof(int) * rbound);
923                         }
924
925                         ranges[rcount++] = ovector[i];
926                         ranges[rcount++] = ovector[i+1];
927                 }
928
929                 startoffset = ovector[1];
930         }
931
932         pcre_free(re);
933
934         *pranges = ranges;
935         return rcount;
936 }
937
938 /**
939  * bidirectional popen() call
940  *
941  * @param rwepipe - int array of size three
942  * @param exe - program to run
943  * @param argv - argument list
944  * @return pid or -1 on error
945  *
946  * The caller passes in an array of three integers (rwepipe), on successful
947  * execution it can then write to element 0 (stdin of exe), and read from
948  * element 1 (stdout) and 2 (stderr).
949  */
950 static int popenRWE(int *rwepipe, const char *exe, const char *const argv[])
951 {
952         int in[2];
953         int out[2];
954         int err[2];
955         int pid;
956         int rc;
957
958         rc = pipe(in);
959         if (rc < 0)
960                 goto error_in;
961
962         rc = pipe(out);
963         if (rc < 0)
964                 goto error_out;
965
966         rc = pipe(err);
967         if (rc < 0)
968                 goto error_err;
969
970         pid = fork();
971         if (pid > 0) {
972                 /* parent */
973                 close(in[0]);
974                 close(out[1]);
975                 close(err[1]);
976                 rwepipe[0] = in[1];
977                 rwepipe[1] = out[0];
978                 rwepipe[2] = err[0];
979                 return pid;
980         } else if (pid == 0) {
981                 /* child */
982                 close(in[1]);
983                 close(out[0]);
984                 close(err[0]);
985                 close(0);
986                 rc = dup(in[0]);
987                 close(1);
988                 rc = dup(out[1]);
989                 close(2);
990                 rc = dup(err[1]);
991
992                 execvp(exe, (char **)argv);
993                 exit(1);
994         } else
995                 goto error_fork;
996
997         return pid;
998
999 error_fork:
1000         close(err[0]);
1001         close(err[1]);
1002 error_err:
1003         close(out[0]);
1004         close(out[1]);
1005 error_out:
1006         close(in[0]);
1007         close(in[1]);
1008 error_in:
1009         return -1;
1010 }
1011
1012 static int pcloseRWE(int pid, int *rwepipe)
1013 {
1014         int rc, status;
1015         close(rwepipe[0]);
1016         close(rwepipe[1]);
1017         close(rwepipe[2]);
1018         rc = waitpid(pid, &status, 0);
1019         return status;
1020 }
1021
1022 static char *shrink_one_url(int *rwepipe, char *big)
1023 {
1024         int biglen = strlen(big);
1025         char *small;
1026         int smalllen;
1027         int rc;
1028
1029         rc = dprintf(rwepipe[0], "%s\n", big);
1030         if (rc < 0)
1031                 return big;
1032
1033         smalllen = biglen + 128;
1034         small = malloc(smalllen);
1035         if (!small)
1036                 return big;
1037
1038         rc = read(rwepipe[1], small, smalllen);
1039         if (rc < 0 || rc > biglen)
1040                 goto error_free_small;
1041
1042         if (strncmp(small, "http://", 7))
1043                 goto error_free_small;
1044
1045         smalllen = rc;
1046         while (smalllen && isspace(small[smalllen-1]))
1047                         small[--smalllen] = 0;
1048
1049         free(big);
1050         return small;
1051
1052 error_free_small:
1053         free(small);
1054         return big;
1055 }
1056
1057 static char *shrink_urls(char *text)
1058 {
1059         int *ranges;
1060         int rcount;
1061         int i;
1062         int inofs = 0;
1063         int outofs = 0;
1064         const char *const shrink_args[] = {
1065                 "bti-shrink-urls",
1066                 NULL
1067         };
1068         int shrink_pid;
1069         int shrink_pipe[3];
1070         int inlen = strlen(text);
1071
1072         dbg("before len=%u\n", inlen);
1073
1074         shrink_pid = popenRWE(shrink_pipe, shrink_args[0], shrink_args);
1075         if (shrink_pid < 0)
1076                 return text;
1077
1078         rcount = find_urls(text, &ranges);
1079         if (!rcount)
1080                 return text;
1081
1082         for (i = 0; i < rcount; i += 2) {
1083                 int url_start = ranges[i];
1084                 int url_end = ranges[i+1];
1085                 int long_url_len = url_end - url_start;
1086                 char *url = strndup(text + url_start, long_url_len);
1087                 int short_url_len;
1088                 int not_url_len = url_start - inofs;
1089
1090                 dbg("long  url[%u]: %s\n", long_url_len, url);
1091                 url = shrink_one_url(shrink_pipe, url);
1092                 short_url_len = url ? strlen(url) : 0;
1093                 dbg("short url[%u]: %s\n", short_url_len, url);
1094
1095                 if (!url || short_url_len >= long_url_len) {
1096                         /* The short url ended up being too long
1097                          * or unavailable */
1098                         if (inofs) {
1099                                 strncpy(text + outofs, text + inofs,
1100                                                 not_url_len + long_url_len);
1101                         }
1102                         inofs += not_url_len + long_url_len;
1103                         outofs += not_url_len + long_url_len;
1104
1105                 } else {
1106                         /* copy the unmodified block */
1107                         strncpy(text + outofs, text + inofs, not_url_len);
1108                         inofs += not_url_len;
1109                         outofs += not_url_len;
1110
1111                         /* copy the new url */
1112                         strncpy(text + outofs, url, short_url_len);
1113                         inofs += long_url_len;
1114                         outofs += short_url_len;
1115                 }
1116
1117                 free(url);
1118         }
1119
1120         /* copy the last block after the last match */
1121         if (inofs) {
1122                 int tail = inlen - inofs;
1123                 if (tail) {
1124                         strncpy(text + outofs, text + inofs, tail);
1125                         outofs += tail;
1126                 }
1127         }
1128
1129         free(ranges);
1130
1131         (void)pcloseRWE(shrink_pid, shrink_pipe);
1132
1133         text[outofs] = 0;
1134         dbg("after len=%u\n", outofs);
1135         return text;
1136 }
1137
1138 int main(int argc, char *argv[], char *envp[])
1139 {
1140         static const struct option options[] = {
1141                 { "debug", 0, NULL, 'd' },
1142                 { "verbose", 0, NULL, 'V' },
1143                 { "account", 1, NULL, 'a' },
1144                 { "password", 1, NULL, 'p' },
1145                 { "host", 1, NULL, 'H' },
1146                 { "proxy", 1, NULL, 'P' },
1147                 { "action", 1, NULL, 'A' },
1148                 { "user", 1, NULL, 'u' },
1149                 { "group", 1, NULL, 'G' },
1150                 { "logfile", 1, NULL, 'L' },
1151                 { "shrink-urls", 0, NULL, 's' },
1152                 { "help", 0, NULL, 'h' },
1153                 { "bash", 0, NULL, 'b' },
1154                 { "background", 0, NULL, 'B' },
1155                 { "dry-run", 0, NULL, 'n' },
1156                 { "page", 1, NULL, 'g' },
1157                 { "column", 1, NULL, 'o' },
1158                 { "version", 0, NULL, 'v' },
1159                 { "config", 1, NULL, 'c' },
1160                 { "replyto", 1, NULL, 'r' },
1161                 { "retweet", 1, NULL, 'w' },
1162                 { }
1163         };
1164         struct session *session;
1165         pid_t child;
1166         char *tweet;
1167         static char password[80];
1168         int retval = 0;
1169         int option;
1170         char *http_proxy;
1171         char *home;
1172         const char *config_file;
1173         time_t t;
1174         int page_nr;
1175
1176         debug = 0;
1177
1178         session = session_alloc();
1179         if (!session) {
1180                 fprintf(stderr, "no more memory...\n");
1181                 return -1;
1182         }
1183
1184         /* get the current time so that we can log it later */
1185         time(&t);
1186         session->time = strdup(ctime(&t));
1187         session->time[strlen(session->time)-1] = 0x00;
1188
1189         /*
1190          * Get the home directory so we can try to find a config file.
1191          * If we have no home dir set up, look in /etc/bti
1192          */
1193         home = getenv("HOME");
1194         if (home) {
1195                 /* We have a home dir, so this might be a user */
1196                 session->homedir = strdup(home);
1197                 config_file = config_user_default;
1198         } else {
1199                 session->homedir = strdup("");
1200                 config_file = config_default;
1201         }
1202
1203         /* set up a default config file location (traditionally ~/.bti) */
1204         session->configfile = zalloc(strlen(session->homedir) + strlen(config_file) + 7);
1205         sprintf(session->configfile, "%s/%s", session->homedir, config_file);
1206
1207         /* Set environment variables first, before reading command line options
1208          * or config file values. */
1209         http_proxy = getenv("http_proxy");
1210         if (http_proxy) {
1211                 if (session->proxy)
1212                         free(session->proxy);
1213                 session->proxy = strdup(http_proxy);
1214                 dbg("http_proxy = %s\n", session->proxy);
1215         }
1216
1217         bti_parse_configfile(session);
1218
1219         while (1) {
1220                 option = getopt_long_only(argc, argv,
1221                                           "dp:P:H:a:A:u:c:hg:o:G:sr:nVvw:",
1222                                           options, NULL);
1223                 if (option == -1)
1224                         break;
1225                 switch (option) {
1226                 case 'd':
1227                         debug = 1;
1228                         break;
1229                 case 'V':
1230                         session->verbose = 1;
1231                         break;
1232                 case 'a':
1233                         if (session->account)
1234                                 free(session->account);
1235                         session->account = strdup(optarg);
1236                         dbg("account = %s\n", session->account);
1237                         break;
1238                 case 'g':
1239                         page_nr = atoi(optarg);
1240                         dbg("page = %d\n", page_nr);
1241                         session->page = page_nr;
1242                         break;
1243                 case 'o':
1244                         session->column_output = atoi(optarg);
1245                         dbg("column_output = %d\n", session->column_output);
1246                         break;
1247                 case 'r':
1248                         session->replyto = strdup(optarg);
1249                         dbg("in_reply_to_status_id = %s\n", session->replyto);
1250                         break;
1251                 case 'w':
1252                         session->retweet = strdup(optarg);
1253                         dbg("Retweet ID = %s\n", session->retweet);
1254                         break;
1255                 case 'p':
1256                         if (session->password)
1257                                 free(session->password);
1258                         session->password = strdup(optarg);
1259                         dbg("password = %s\n", session->password);
1260                         break;
1261                 case 'P':
1262                         if (session->proxy)
1263                                 free(session->proxy);
1264                         session->proxy = strdup(optarg);
1265                         dbg("proxy = %s\n", session->proxy);
1266                         break;
1267                 case 'A':
1268                         if (strcasecmp(optarg, "update") == 0)
1269                                 session->action = ACTION_UPDATE;
1270                         else if (strcasecmp(optarg, "friends") == 0)
1271                                 session->action = ACTION_FRIENDS;
1272                         else if (strcasecmp(optarg, "user") == 0)
1273                                 session->action = ACTION_USER;
1274                         else if (strcasecmp(optarg, "replies") == 0)
1275                                 session->action = ACTION_REPLIES;
1276                         else if (strcasecmp(optarg, "public") == 0)
1277                                 session->action = ACTION_PUBLIC;
1278                         else if (strcasecmp(optarg, "group") == 0)
1279                                 session->action = ACTION_GROUP;
1280                         else if (strcasecmp(optarg, "retweet") == 0)
1281                                 session->action = ACTION_RETWEET;
1282                         else
1283                                 session->action = ACTION_UNKNOWN;
1284                         dbg("action = %d\n", session->action);
1285                         break;
1286                 case 'u':
1287                         if (session->user)
1288                                 free(session->user);
1289                         session->user = strdup(optarg);
1290                         dbg("user = %s\n", session->user);
1291                         break;
1292
1293                 case 'G':
1294                         if (session->group)
1295                                 free(session->group);
1296                         session->group = strdup(optarg);
1297                         dbg("group = %s\n", session->group);
1298                         break;
1299                 case 'L':
1300                         if (session->logfile)
1301                                 free(session->logfile);
1302                         session->logfile = strdup(optarg);
1303                         dbg("logfile = %s\n", session->logfile);
1304                         break;
1305                 case 's':
1306                         session->shrink_urls = 1;
1307                         break;
1308                 case 'H':
1309                         if (session->hosturl)
1310                                 free(session->hosturl);
1311                         if (session->hostname)
1312                                 free(session->hostname);
1313                         if (strcasecmp(optarg, "twitter") == 0) {
1314                                 session->host = HOST_TWITTER;
1315                                 session->hosturl = strdup(twitter_host);
1316                                 session->hostname = strdup(twitter_name);
1317                         } else if (strcasecmp(optarg, "identica") == 0) {
1318                                 session->host = HOST_IDENTICA;
1319                                 session->hosturl = strdup(identica_host);
1320                                 session->hostname = strdup(identica_name);
1321                         } else {
1322                                 session->host = HOST_CUSTOM;
1323                                 session->hosturl = strdup(optarg);
1324                                 session->hostname = strdup(optarg);
1325                         }
1326                         dbg("host = %d\n", session->host);
1327                         break;
1328                 case 'b':
1329                         session->bash = 1;
1330                         /* fall-through intended */
1331                 case 'B':
1332                         session->background = 1;
1333                         break;
1334                 case 'c':
1335                         if (session->configfile)
1336                                 free(session->configfile);
1337                         session->configfile = strdup(optarg);
1338                         dbg("configfile = %s\n", session->configfile);
1339
1340                         /*
1341                          * read the config file now.  Yes, this could override
1342                          * previously set options from the command line, but
1343                          * the user asked for it...
1344                          */
1345                         bti_parse_configfile(session);
1346                         break;
1347                 case 'h':
1348                         display_help();
1349                         goto exit;
1350                 case 'n':
1351                         session->dry_run = 1;
1352                         break;
1353                 case 'v':
1354                         display_version();
1355                         goto exit;
1356                 default:
1357                         display_help();
1358                         goto exit;
1359                 }
1360         }
1361
1362         session_readline_init(session);
1363         /*
1364          * Show the version to make it easier to determine what
1365          * is going on here
1366          */
1367         if (debug)
1368                 display_version();
1369
1370         if (session->host == HOST_TWITTER) {
1371                 if (!session->consumer_key || !session->consumer_secret) {
1372                         if (session->action == ACTION_USER ||
1373                                         session->action == ACTION_PUBLIC) {
1374                                 /*
1375                                  * Some actions may still work without
1376                                  * authentication
1377                                  */
1378                                 session->guest = 1;
1379                         } else {
1380                                 fprintf(stderr,
1381                                                 "Twitter no longer supports HTTP basic authentication.\n"
1382                                                 "Both consumer key, and consumer secret are required"
1383                                                 " for bti in order to behave as an OAuth consumer.\n");
1384                                 goto exit;
1385                         }
1386                 }
1387                 if (session->action == ACTION_GROUP) {
1388                         fprintf(stderr, "Groups only work in Identi.ca.\n");
1389                         goto exit;
1390                 }
1391         } else {
1392                 if (!session->consumer_key || !session->consumer_secret)
1393                         session->no_oauth = 1;
1394         }
1395
1396         if (session->no_oauth) {
1397                 if (!session->account) {
1398                         fprintf(stdout, "Enter account for %s: ",
1399                                 session->hostname);
1400                         session->account = session->readline(NULL);
1401                 }
1402                 if (!session->password) {
1403                         read_password(password, sizeof(password),
1404                                       session->hostname);
1405                         session->password = strdup(password);
1406                 }
1407         } else if (!session->guest) {
1408                 if (!session->access_token_key ||
1409                     !session->access_token_secret) {
1410                         request_access_token(session);
1411                         goto exit;
1412                 }
1413         }
1414
1415         if (session->action == ACTION_UNKNOWN) {
1416                 fprintf(stderr, "Unknown action, valid actions are:\n"
1417                         "'update', 'friends', 'public', 'replies', 'group' or 'user'.\n");
1418                 goto exit;
1419         }
1420
1421         if (session->action == ACTION_GROUP && !session->group) {
1422                 fprintf(stdout, "Enter group name: ");
1423                 session->group = session->readline(NULL);
1424         }
1425
1426         if (session->action == ACTION_RETWEET) {
1427                 if (!session->retweet) {
1428                         char *rtid;
1429
1430                         fprintf(stdout, "Status ID to retweet: ");
1431                         rtid = get_string_from_stdin();
1432                         session->retweet = zalloc(strlen(rtid) + 10);
1433                         sprintf(session->retweet, "%s", rtid);
1434                         free(rtid);
1435                 }
1436
1437                 if (!session->retweet || strlen(session->retweet) == 0) {
1438                         dbg("no retweet?\n");
1439                         return -1;
1440                 }
1441
1442                 dbg("retweet ID = %s\n", session->retweet);
1443         }
1444
1445         if (session->action == ACTION_UPDATE) {
1446                 if (session->background || !session->interactive)
1447                         tweet = get_string_from_stdin();
1448                 else
1449                         tweet = session->readline("tweet: ");
1450                 if (!tweet || strlen(tweet) == 0) {
1451                         dbg("no tweet?\n");
1452                         return -1;
1453                 }
1454
1455                 if (session->shrink_urls)
1456                         tweet = shrink_urls(tweet);
1457
1458                 session->tweet = zalloc(strlen(tweet) + 10);
1459                 if (session->bash)
1460                         sprintf(session->tweet, "%c %s",
1461                                 getuid() ? '$' : '#', tweet);
1462                 else
1463                         sprintf(session->tweet, "%s", tweet);
1464
1465                 free(tweet);
1466                 dbg("tweet = %s\n", session->tweet);
1467         }
1468
1469         if (session->page == 0)
1470                 session->page = 1;
1471         dbg("config file = %s\n", session->configfile);
1472         dbg("host = %d\n", session->host);
1473         dbg("action = %d\n", session->action);
1474
1475         /* fork ourself so that the main shell can get on
1476          * with it's life as we try to connect and handle everything
1477          */
1478         if (session->background) {
1479                 child = fork();
1480                 if (child) {
1481                         dbg("child is %d\n", child);
1482                         exit(0);
1483                 }
1484         }
1485
1486         retval = send_request(session);
1487         if (retval && !session->background)
1488                 fprintf(stderr, "operation failed\n");
1489
1490         log_session(session, retval);
1491 exit:
1492         session_readline_cleanup(session);
1493         session_free(session);
1494         return retval;;
1495 }