a5fc337d2f5ef59cba5e2373c3b7386eacd6b4b1
[libguestfs.git] / fish / fish.c
1 /* guestfish - the filesystem interactive shell
2  * Copyright (C) 2009 Red Hat Inc. 
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18
19 #include <config.h>
20
21 #define _GNU_SOURCE // for strchrnul
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <fcntl.h>
28 #include <getopt.h>
29 #include <assert.h>
30
31 #ifdef HAVE_LIBREADLINE
32 #include <readline/readline.h>
33 #include <readline/history.h>
34 #endif
35
36 #include <guestfs.h>
37
38 #include "fish.h"
39
40 struct mp {
41   struct mp *next;
42   char *device;
43   char *mountpoint;
44 };
45
46 static void mount_mps (struct mp *mp);
47 static void interactive (void);
48 static void shell_script (void);
49 static void script (int prompt);
50 static void cmdline (char *argv[], int optind, int argc);
51 static int issue_command (const char *cmd, char *argv[]);
52 static void initialize_readline (void);
53 static void cleanup_readline (void);
54 static void add_history_line (const char *);
55
56 /* Currently open libguestfs handle. */
57 guestfs_h *g;
58 int g_launched = 0;
59
60 int read_only = 0;
61 int quit = 0;
62 int verbose = 0;
63
64 int
65 launch (guestfs_h *_g)
66 {
67   assert (_g == g);
68
69   if (!g_launched) {
70     if (guestfs_launch (g) == -1)
71       return -1;
72     if (guestfs_wait_ready (g) == -1)
73       return -1;
74     g_launched = 1;
75   }
76   return 0;
77 }
78
79 static void
80 usage (void)
81 {
82   fprintf (stderr,
83            "guestfish: guest filesystem shell\n"
84            "guestfish lets you edit virtual machine filesystems\n"
85            "Copyright (C) 2009 Red Hat Inc.\n"
86            "Usage:\n"
87            "  guestfish [--options] cmd [: cmd : cmd ...]\n"
88            "or for interactive use:\n"
89            "  guestfish\n"
90            "or from a shell script:\n"
91            "  guestfish <<EOF\n"
92            "  cmd\n"
93            "  ...\n"
94            "  EOF\n"
95            "Options:\n"
96            "  -h|--cmd-help        List available commands\n"
97            "  -h|--cmd-help cmd    Display detailed help on 'cmd'\n"
98            "  -a|--add image       Add image\n"
99            "  -m|--mount dev[:mnt] Mount dev on mnt (if omitted, /)\n"
100            "  -n|--no-sync         Don't autosync\n"
101            "  -r|--ro              Mount read-only\n"
102            "  -v|--verbose         Verbose messages\n"
103            "  -V|--version         Display version and exit\n"
104            "For more information,  see the manpage guestfish(1).\n");
105 }
106
107 int
108 main (int argc, char *argv[])
109 {
110   static const char *options = "a:h::m:nrv?V";
111   static struct option long_options[] = {
112     { "add", 1, 0, 'a' },
113     { "cmd-help", 2, 0, 'h' },
114     { "help", 0, 0, '?' },
115     { "mount", 1, 0, 'm' },
116     { "no-sync", 0, 0, 'n' },
117     { "ro", 0, 0, 'r' },
118     { "verbose", 0, 0, 'v' },
119     { "version", 0, 0, 'V' },
120     { 0, 0, 0, 0 }
121   };
122   struct mp *mps = NULL;
123   struct mp *mp;
124   char *p;
125   int c;
126
127   initialize_readline ();
128
129   /* guestfs_create is meant to be a lightweight operation, so
130    * it's OK to do it early here.
131    */
132   g = guestfs_create ();
133   if (g == NULL) {
134     fprintf (stderr, "guestfs_create: failed to create handle\n");
135     exit (1);
136   }
137
138   guestfs_set_autosync (g, 1);
139
140   /* If developing, add . to the path.  Note that libtools interferes
141    * with this because uninstalled guestfish is a shell script that runs
142    * the real program with an absolute path.  Detect that too.
143    *
144    * BUT if LIBGUESTFS_PATH environment variable is already set by
145    * the user, then don't override it.
146    */
147   if (getenv ("LIBGUESTFS_PATH") == NULL &&
148       argv[0] &&
149       (argv[0][0] != '/' || strstr (argv[0], "/.libs/lt-") != NULL))
150     guestfs_set_path (g, ".:" GUESTFS_DEFAULT_PATH);
151
152   for (;;) {
153     c = getopt_long (argc, argv, options, long_options, NULL);
154     if (c == -1) break;
155
156     switch (c) {
157     case 'a':
158       if (access (optarg, R_OK) != 0) {
159         perror (optarg);
160         exit (1);
161       }
162       if (guestfs_add_drive (g, optarg) == -1)
163         exit (1);
164       break;
165
166     case 'h':
167       if (optarg)
168         display_command (optarg);
169       else if (argv[optind] && argv[optind][0] != '-')
170         display_command (argv[optind++]);
171       else
172         list_commands ();
173       exit (0);
174
175     case 'm':
176       mp = malloc (sizeof (struct mp));
177       if (!mp) {
178         perror ("malloc");
179         exit (1);
180       }
181       p = strchr (optarg, ':');
182       if (p) {
183         *p = '\0';
184         mp->mountpoint = p+1;
185       } else
186         mp->mountpoint = "/";
187       mp->device = optarg;
188       mp->next = mps;
189       mps = mp;
190       break;
191
192     case 'n':
193       guestfs_set_autosync (g, 0);
194       break;
195
196     case 'r':
197       read_only = 1;
198       break;
199
200     case 'v':
201       verbose++;
202       guestfs_set_verbose (g, verbose);
203       break;
204
205     case 'V':
206       printf ("guestfish %s\n", PACKAGE_VERSION);
207       exit (0);
208
209     case '?':
210       usage ();
211       exit (0);
212
213     default:
214       fprintf (stderr, "guestfish: unexpected command line option 0x%x\n", c);
215       exit (1);
216     }
217   }
218
219   /* If we've got mountpoints, we must launch the guest and mount them. */
220   if (mps != NULL) {
221     if (launch (g) == -1) exit (1);
222     mount_mps (mps);
223   }
224
225   /* Interactive, shell script, or command(s) on the command line? */
226   if (optind >= argc) {
227     if (isatty (0))
228       interactive ();
229     else
230       shell_script ();
231   }
232   else
233     cmdline (argv, optind, argc);
234
235   cleanup_readline ();
236
237   exit (0);
238 }
239
240 void
241 pod2text (const char *heading, const char *str)
242 {
243   FILE *fp;
244
245   fp = popen ("pod2text", "w");
246   if (fp == NULL) {
247     /* pod2text failed, maybe not found, so let's just print the
248      * source instead, since that's better than doing nothing.
249      */
250     printf ("%s\n\n%s\n", heading, str);
251     return;
252   }
253   fputs ("=head1 ", fp);
254   fputs (heading, fp);
255   fputs ("\n\n", fp);
256   fputs (str, fp);
257   pclose (fp);
258 }
259
260 /* List is built in reverse order, so mount them in reverse order. */
261 static void
262 mount_mps (struct mp *mp)
263 {
264   int r;
265
266   if (mp) {
267     mount_mps (mp->next);
268     if (!read_only)
269       r = guestfs_mount (g, mp->device, mp->mountpoint);
270     else
271       r = guestfs_mount_ro (g, mp->device, mp->mountpoint);
272     if (r == -1)
273       exit (1);
274   }
275 }
276
277 static void
278 interactive (void)
279 {
280   script (1);
281 }
282
283 static void
284 shell_script (void)
285 {
286   script (0);
287 }
288
289 #define FISH "><fs> "
290
291 static char *line_read = NULL;
292
293 static char *
294 rl_gets (int prompt)
295 {
296 #ifdef HAVE_LIBREADLINE
297
298   if (prompt) {
299     if (line_read) {
300       free (line_read);
301       line_read = NULL;
302     }
303
304     line_read = readline (prompt ? FISH : "");
305
306     if (line_read && *line_read)
307       add_history_line (line_read);
308
309     return line_read;
310   }
311
312 #endif /* HAVE_LIBREADLINE */
313
314   static char buf[8192];
315   int len;
316
317   if (prompt) printf (FISH);
318   line_read = fgets (buf, sizeof buf, stdin);
319
320   if (line_read) {
321     len = strlen (line_read);
322     if (len > 0 && buf[len-1] == '\n') buf[len-1] = '\0';
323   }
324
325   return line_read;
326 }
327
328 static void
329 script (int prompt)
330 {
331   char *buf;
332   char *cmd;
333   char *p, *pend;
334   char *argv[64];
335   int i, len;
336
337   if (prompt)
338     printf ("\n"
339             "Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
340             "editing virtual machine filesystems.\n"
341             "\n"
342             "Type: 'help' for help with commands\n"
343             "      'quit' to quit the shell\n"
344             "\n");
345
346   while (!quit) {
347     buf = rl_gets (prompt);
348     if (!buf) {
349       quit = 1;
350       break;
351     }
352
353     /* Skip any initial whitespace before the command. */
354     while (*buf && isspace (*buf))
355       buf++;
356
357     /* Get the command (cannot be quoted). */
358     len = strcspn (buf, " \t");
359
360     if (len == 0) continue;
361
362     cmd = buf;
363     i = 0;
364     if (buf[len] == '\0') {
365       argv[0] = NULL;
366       goto got_command;
367     }
368
369     buf[len] = '\0';
370     p = &buf[len+1];
371     p += strspn (p, " \t");
372
373     /* Get the parameters. */
374     while (*p && i < sizeof argv / sizeof argv[0]) {
375       /* Parameters which start with quotes or square brackets
376        * are treated specially.  Bare parameters are delimited
377        * by whitespace.
378        */
379       if (*p == '"') {
380         p++;
381         len = strcspn (p, "\"");
382         if (p[len] == '\0') {
383           fprintf (stderr, "guestfish: unterminated double quote\n");
384           if (!prompt) exit (1);
385           goto next_command;
386         }
387         if (p[len+1] && (p[len+1] != ' ' && p[len+1] != '\t')) {
388           fprintf (stderr, "guestfish: command arguments not separated by whitespace\n");
389           if (!prompt) exit (1);
390           goto next_command;
391         }
392         p[len] = '\0';
393         pend = p[len+1] ? &p[len+2] : &p[len+1];
394       } else if (*p == '\'') {
395         p++;
396         len = strcspn (p, "'");
397         if (p[len] == '\0') {
398           fprintf (stderr, "guestfish: unterminated single quote\n");
399           if (!prompt) exit (1);
400           goto next_command;
401         }
402         if (p[len+1] && (p[len+1] != ' ' && p[len+1] != '\t')) {
403           fprintf (stderr, "guestfish: command arguments not separated by whitespace\n");
404           if (!prompt) exit (1);
405           goto next_command;
406         }
407         p[len] = '\0';
408         pend = p[len+1] ? &p[len+2] : &p[len+1];
409         /*
410       } else if (*p == '[') {
411         int c = 1;
412         p++;
413         pend = p;
414         while (*pend && c != 0) {
415           if (*pend == '[') c++;
416           else if (*pend == ']') c--;
417           pend++;
418         }
419         if (c != 0) {
420           fprintf (stderr, "guestfish: unterminated \"[...]\" sequence\n");
421           if (!prompt) exit (1);
422           goto next_command;
423         }
424         if (*pend && (*pend != ' ' && *pend != '\t')) {
425           fprintf (stderr, "guestfish: command arguments not separated by whitespace\n");
426           if (!prompt) exit (1);
427           goto next_command;
428         }
429         *(pend-1) = '\0';
430         */
431       } else if (*p != ' ' && *p != '\t') {
432         len = strcspn (p, " \t");
433         if (p[len]) {
434           p[len] = '\0';
435           pend = &p[len+1];
436         } else
437           pend = &p[len];
438       } else {
439         fprintf (stderr, "guestfish: internal error parsing string at '%s'\n",
440                  p);
441         abort ();
442       }
443
444       argv[i++] = p;
445       p = pend;
446
447       if (*p)
448         p += strspn (p, " \t");
449     }
450
451     if (i == sizeof argv / sizeof argv[0]) {
452       fprintf (stderr, "guestfish: too many arguments\n");
453       if (!prompt) exit (1);
454       goto next_command;
455     }
456
457     argv[i] = NULL;
458
459   got_command:
460     if (issue_command (cmd, argv) == -1) {
461       if (!prompt) exit (1);
462     }
463
464   next_command:;
465   }
466   if (prompt) printf ("\n");
467 }
468
469 static void
470 cmdline (char *argv[], int optind, int argc)
471 {
472   const char *cmd;
473   char **params;
474
475   if (optind >= argc) return;
476
477   cmd = argv[optind++];
478   if (strcmp (cmd, ":") == 0) {
479     fprintf (stderr, "guestfish: empty command on command line\n");
480     exit (1);
481   }
482   params = &argv[optind];
483
484   /* Search for end of command list or ":" ... */
485   while (optind < argc && strcmp (argv[optind], ":") != 0)
486     optind++;
487
488   if (optind == argc) {
489     if (issue_command (cmd, params) == -1) exit (1);
490   } else {
491     argv[optind] = NULL;
492     if (issue_command (cmd, params) == -1) exit (1);
493     cmdline (argv, optind+1, argc);
494   }
495 }
496
497 static int
498 issue_command (const char *cmd, char *argv[])
499 {
500   int argc;
501
502   for (argc = 0; argv[argc] != NULL; ++argc)
503     ;
504
505   if (strcasecmp (cmd, "help") == 0) {
506     if (argc == 0)
507       list_commands ();
508     else
509       display_command (argv[0]);
510     return 0;
511   }
512   else if (strcasecmp (cmd, "quit") == 0 ||
513            strcasecmp (cmd, "exit") == 0 ||
514            strcasecmp (cmd, "q") == 0) {
515     quit = 1;
516     return 0;
517   }
518   else if (strcasecmp (cmd, "alloc") == 0 ||
519            strcasecmp (cmd, "allocate") == 0)
520     return do_alloc (cmd, argc, argv);
521   else if (strcasecmp (cmd, "edit") == 0 ||
522            strcasecmp (cmd, "vi") == 0 ||
523            strcasecmp (cmd, "emacs") == 0)
524     return do_edit (cmd, argc, argv);
525   else
526     return run_action (cmd, argc, argv);
527 }
528
529 void
530 list_builtin_commands (void)
531 {
532   /* help and quit should appear at the top */
533   printf ("%-20s %s\n",
534           "help", "display a list of commands or help on a command");
535   printf ("%-20s %s\n",
536           "quit", "quit guestfish");
537
538   printf ("%-20s %s\n",
539           "alloc", "allocate an image");
540   printf ("%-20s %s\n",
541           "edit", "edit a file in the image");
542
543   /* actions are printed after this (see list_commands) */
544 }
545
546 void
547 display_builtin_command (const char *cmd)
548 {
549   /* help for actions is auto-generated, see display_command */
550
551   if (strcasecmp (cmd, "alloc") == 0 ||
552       strcasecmp (cmd, "allocate") == 0)
553     printf ("alloc - allocate an image\n"
554             "     alloc <filename> <size>\n"
555             "\n"
556             "    This creates an empty (zeroed) file of the given size,\n"
557             "    and then adds so it can be further examined.\n"
558             "\n"
559             "    For more advanced image creation, see qemu-img utility.\n"
560             "\n"
561             "    Size can be specified (where <nn> means a number):\n"
562             "    <nn>             number of kilobytes\n"
563             "      eg: 1440       standard 3.5\" floppy\n"
564             "    <nn>K or <nn>KB  number of kilobytes\n"
565             "    <nn>M or <nn>MB  number of megabytes\n"
566             "    <nn>G or <nn>GB  number of gigabytes\n"
567             "    <nn>sects        number of 512 byte sectors\n");
568   else if (strcasecmp (cmd, "edit") == 0 ||
569            strcasecmp (cmd, "vi") == 0 ||
570            strcasecmp (cmd, "emacs") == 0)
571     printf ("edit - edit a file in the image\n"
572             "     edit <filename>\n"
573             "\n"
574             "    This is used to edit a file.\n"
575             "\n"
576             "    It is the equivalent of (and is implemented by)\n"
577             "    running \"cat\", editing locally, and then \"write-file\".\n"
578             "\n"
579             "    Normally it uses $EDITOR, but if you use the aliases\n"
580             "    \"vi\" or \"emacs\" you will get those editors.\n"
581             "\n"
582             "    NOTE: This will not work reliably for large files\n"
583             "    (> 2 MB) or binary files containing \\0 bytes.\n");
584   else if (strcasecmp (cmd, "help") == 0)
585     printf ("help - display a list of commands or help on a command\n"
586             "     help cmd\n"
587             "     help\n");
588   else if (strcasecmp (cmd, "quit") == 0 ||
589            strcasecmp (cmd, "exit") == 0 ||
590            strcasecmp (cmd, "q") == 0)
591     printf ("quit - quit guestfish\n"
592             "     quit\n");
593   else
594     fprintf (stderr, "%s: command not known, use -h to list all commands\n",
595              cmd);
596 }
597
598 void
599 free_strings (char **argv)
600 {
601   int argc;
602
603   for (argc = 0; argv[argc] != NULL; ++argc)
604     free (argv[argc]);
605   free (argv);
606 }
607
608 void
609 print_strings (char * const * const argv)
610 {
611   int argc;
612
613   for (argc = 0; argv[argc] != NULL; ++argc)
614     printf ("%s\n", argv[argc]);
615 }
616
617 void
618 print_table (char * const * const argv)
619 {
620   int i;
621
622   for (i = 0; argv[i] != NULL; i += 2)
623     printf ("%s: %s\n", argv[i], argv[i+1]);
624 }
625
626 int
627 is_true (const char *str)
628 {
629   return
630     strcasecmp (str, "0") != 0 &&
631     strcasecmp (str, "f") != 0 &&
632     strcasecmp (str, "false") != 0 &&
633     strcasecmp (str, "n") != 0 &&
634     strcasecmp (str, "no") != 0;
635 }
636
637 /* XXX We could improve list parsing. */
638 char **
639 parse_string_list (const char *str)
640 {
641   char **argv;
642   const char *p, *pend;
643   int argc, i;
644
645   argc = 1;
646   for (i = 0; str[i]; ++i)
647     if (str[i] == ' ') argc++;
648
649   argv = malloc (sizeof (char *) * (argc+1));
650   if (argv == NULL) { perror ("malloc"); exit (1); }
651
652   p = str;
653   i = 0;
654   while (*p) {
655     pend = strchrnul (p, ' ');
656     argv[i] = strndup (p, pend-p);
657     i++;
658     p = *pend == ' ' ? pend+1 : pend;
659   }
660   argv[i] = NULL;
661
662   return argv;
663 }
664
665 #ifdef HAVE_LIBREADLINE
666 static char histfile[1024];
667 static int nr_history_lines = 0;
668 #endif
669
670 static void
671 initialize_readline (void)
672 {
673 #ifdef HAVE_LIBREADLINE
674   const char *home;
675
676   home = getenv ("HOME");
677   if (home) {
678     snprintf (histfile, sizeof histfile, "%s/.guestfish", home);
679     using_history ();
680     (void) read_history (histfile);
681   }
682
683   rl_readline_name = "guestfish";
684   rl_attempted_completion_function = do_completion;
685 #endif
686 }
687
688 static void
689 cleanup_readline (void)
690 {
691 #ifdef HAVE_LIBREADLINE
692   int fd;
693
694   if (histfile[0] != '\0') {
695     fd = open (histfile, O_WRONLY|O_CREAT, 0644);
696     if (fd == -1) {
697       perror (histfile);
698       return;
699     }
700     close (fd);
701
702     (void) append_history (nr_history_lines, histfile);
703   }
704 #endif
705 }
706
707 static void
708 add_history_line (const char *line)
709 {
710 #ifdef HAVE_LIBREADLINE
711   add_history (line);
712   nr_history_lines++;
713 #endif
714 }