#define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include "dvm2.h" void send_file(char *fname) { char *base; int fd = open(fname, O_RDONLY); if (fd < 0) gui_fatal("open %s", fname); base = rindex(fname, '/'); if (!base) base = fname; else base++; if (strlen(base) >= DVM_FILENAME_SIZE) base += strlen(base) - DVM_FILENAME_SIZE + 1; if (!write_all(1, base, DVM_FILENAME_SIZE)) gui_fatal("send filename to dispVM"); if (!copy_fd_all(1, fd)) gui_fatal("send file to dispVM"); close(1); } int copy_and_return_nonemptiness(int tmpfd) { struct stat st; if (!copy_fd_all(tmpfd, 0)) gui_fatal("receiving file from dispVM"); if (fstat(tmpfd, &st)) gui_fatal("fstat"); close(tmpfd); return st.st_size; } void recv_file_nowrite(char *fname) { char *tempfile; char *errmsg; int tmpfd; asprintf(&tempfile, "/tmp/file_edited_in_dvm.XXXXXX"); tmpfd = mkstemp(tempfile); if (tmpfd < 0) gui_fatal("unable to create any temporary file, aborting"); if (!copy_and_return_nonemptiness(tmpfd)) { unlink(tempfile); return; } asprintf(&errmsg, "The file %s has been edited in Disposable VM and the modified content has been received, " "but this file is in nonwritable directory and thus cannot be modified safely. The edited file has been " "saved to %s", fname, tempfile); gui_nonfatal(errmsg); } void actually_recv_file(char *fname, char *tempfile, int tmpfd) { if (!copy_and_return_nonemptiness(tmpfd)) { unlink(tempfile); return; } if (rename(tempfile, fname)) gui_fatal("rename"); } void recv_file(char *fname) { int tmpfd; char *tempfile; asprintf(&tempfile, "%s.XXXXXX", fname); tmpfd = mkstemp(tempfile); if (tmpfd < 0) recv_file_nowrite(fname); else actually_recv_file(fname, tempfile, tmpfd); } void talk_to_daemon(char *fname) { send_file(fname); recv_file(fname); } int main(int argc, char ** argv) { signal(SIGPIPE, SIG_IGN); if (argc!=2) gui_fatal("OpenInVM - no file given?"); talk_to_daemon(argv[1]); return 0; }