=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/sftp-int.c,v retrieving revision 1.36.2.3 retrieving revision 1.37 diff -u -r1.36.2.3 -r1.37 --- src/usr.bin/ssh/Attic/sftp-int.c 2002/06/02 22:56:11 1.36.2.3 +++ src/usr.bin/ssh/Attic/sftp-int.c 2001/06/23 15:12:20 1.37 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2001,2002 Damien Miller. All rights reserved. + * Copyright (c) 2001 Damien Miller. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -26,7 +26,7 @@ /* XXX: recursive operations */ #include "includes.h" -RCSID("$OpenBSD: sftp-int.c,v 1.36.2.3 2002/06/02 22:56:11 miod Exp $"); +RCSID("$OpenBSD: sftp-int.c,v 1.37 2001/06/23 15:12:20 itojun Exp $"); #include @@ -44,12 +44,9 @@ /* File to read commands from */ extern FILE *infile; -/* Size of buffer used when copying files */ -extern size_t copy_buffer_len; +/* Version of server we are speaking to */ +int version; -/* Number of concurrent outstanding requests */ -extern int num_requests; - /* Seperators for interactive commands */ #define WHITESPACE " \t\r\n" @@ -83,7 +80,6 @@ }; const struct CMD cmds[] = { - { "bye", I_QUIT }, { "cd", I_CHDIR }, { "chdir", I_CHDIR }, { "chgrp", I_CHGRP }, @@ -169,18 +165,17 @@ /* XXX: child has pipe fds to ssh subproc open - issue? */ if (args) { debug3("Executing %s -c \"%s\"", shell, args); - execl(shell, shell, "-c", args, (char *)NULL); + execl(shell, shell, "-c", args, NULL); } else { debug3("Executing %s", shell); - execl(shell, shell, (char *)NULL); + execl(shell, shell, NULL); } fprintf(stderr, "Couldn't execute \"%s\": %s\n", shell, strerror(errno)); _exit(1); } - while (waitpid(pid, &status, 0) == -1) - if (errno != EINTR) - fatal("Couldn't wait for child: %s", strerror(errno)); + if (waitpid(pid, &status, 0) == -1) + fatal("Couldn't wait for child: %s", strerror(errno)); if (!WIFEXITED(status)) error("Shell exited abormally"); else if (WEXITSTATUS(status)) @@ -211,8 +206,7 @@ ret = xmalloc(len); strlcpy(ret, p1, len); - if (strcmp(p1, "/") != 0) - strlcat(ret, "/", len); + strlcat(ret, "/", len); strlcat(ret, p2, len); return(ret); @@ -336,12 +330,12 @@ } static int -remote_is_dir(struct sftp_conn *conn, char *path) +remote_is_dir(int in, int out, char *path) { Attrib *a; /* XXX: report errors? */ - if ((a = do_stat(conn, path, 1)) == NULL) + if ((a = do_stat(in, out, path, 1)) == NULL) return(0); if (!(a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)) return(0); @@ -349,7 +343,7 @@ } static int -process_get(struct sftp_conn *conn, char *src, char *dst, char *pwd, int pflag) +process_get(int in, int out, char *src, char *dst, char *pwd, int pflag) { char *abs_src = NULL; char *abs_dst = NULL; @@ -363,7 +357,7 @@ memset(&g, 0, sizeof(g)); debug3("Looking up %s", abs_src); - if (remote_glob(conn, abs_src, 0, NULL, &g)) { + if (remote_glob(in, out, abs_src, 0, NULL, &g)) { error("File \"%s\" not found.", abs_src); err = -1; goto out; @@ -387,7 +381,7 @@ goto out; } printf("Fetching %s to %s\n", g.gl_pathv[0], abs_dst); - err = do_download(conn, g.gl_pathv[0], abs_dst, pflag); + err = do_download(in, out, g.gl_pathv[0], abs_dst, pflag); goto out; } @@ -399,7 +393,7 @@ goto out; } - for (i = 0; g.gl_pathv[i]; i++) { + for(i = 0; g.gl_pathv[i]; i++) { if (infer_path(g.gl_pathv[i], &tmp)) { err = -1; goto out; @@ -411,7 +405,7 @@ abs_dst = tmp; printf("Fetching %s to %s\n", g.gl_pathv[i], abs_dst); - if (do_download(conn, g.gl_pathv[i], abs_dst, pflag) == -1) + if (do_download(in, out, g.gl_pathv[i], abs_dst, pflag) == -1) err = -1; xfree(abs_dst); abs_dst = NULL; @@ -426,7 +420,7 @@ } static int -process_put(struct sftp_conn *conn, char *src, char *dst, char *pwd, int pflag) +process_put(int in, int out, char *src, char *dst, char *pwd, int pflag) { char *tmp_dst = NULL; char *abs_dst = NULL; @@ -452,7 +446,7 @@ if (g.gl_pathv[0] && g.gl_matchc == 1) { if (tmp_dst) { /* If directory specified, append filename */ - if (remote_is_dir(conn, tmp_dst)) { + if (remote_is_dir(in, out, tmp_dst)) { if (infer_path(g.gl_pathv[0], &tmp)) { err = 1; goto out; @@ -469,19 +463,19 @@ abs_dst = make_absolute(abs_dst, pwd); } printf("Uploading %s to %s\n", g.gl_pathv[0], abs_dst); - err = do_upload(conn, g.gl_pathv[0], abs_dst, pflag); + err = do_upload(in, out, g.gl_pathv[0], abs_dst, pflag); goto out; } /* Multiple matches, dst may be directory or unspecified */ - if (tmp_dst && !remote_is_dir(conn, tmp_dst)) { + if (tmp_dst && !remote_is_dir(in, out, tmp_dst)) { error("Multiple files match, but \"%s\" is not a directory", tmp_dst); err = -1; goto out; } - for (i = 0; g.gl_pathv[i]; i++) { + for(i = 0; g.gl_pathv[i]; i++) { if (infer_path(g.gl_pathv[i], &tmp)) { err = -1; goto out; @@ -493,7 +487,7 @@ abs_dst = make_absolute(tmp, pwd); printf("Uploading %s to %s\n", g.gl_pathv[i], abs_dst); - if (do_upload(conn, g.gl_pathv[i], abs_dst, pflag) == -1) + if (do_upload(in, out, g.gl_pathv[i], abs_dst, pflag) == -1) err = -1; } @@ -523,7 +517,7 @@ return(-1); /* Figure out which command we have */ - for (i = 0; cmds[i].c; i++) { + for(i = 0; cmds[i].c; i++) { int cmdlen = strlen(cmds[i].c); /* Check for command followed by whitespace */ @@ -651,7 +645,7 @@ } static int -parse_dispatch_command(struct sftp_conn *conn, const char *cmd, char **pwd) +parse_dispatch_command(int in, int out, const char *cmd, char **pwd) { char *path1, *path2, *tmp; int pflag, cmdnum, i; @@ -671,26 +665,32 @@ case -1: break; case I_GET: - err = process_get(conn, path1, path2, *pwd, pflag); + err = process_get(in, out, path1, path2, *pwd, pflag); break; case I_PUT: - err = process_put(conn, path1, path2, *pwd, pflag); + err = process_put(in, out, path1, path2, *pwd, pflag); break; case I_RENAME: path1 = make_absolute(path1, *pwd); path2 = make_absolute(path2, *pwd); - err = do_rename(conn, path1, path2); + err = do_rename(in, out, path1, path2); break; case I_SYMLINK: - path2 = make_absolute(path2, *pwd); - err = do_symlink(conn, path1, path2); + if (version < 3) { + error("The server (version %d) does not support " + "this operation", version); + err = -1; + } else { + path2 = make_absolute(path2, *pwd); + err = do_symlink(in, out, path1, path2); + } break; case I_RM: path1 = make_absolute(path1, *pwd); - remote_glob(conn, path1, GLOB_NOCHECK, NULL, &g); - for (i = 0; g.gl_pathv[i]; i++) { + remote_glob(in, out, path1, GLOB_NOCHECK, NULL, &g); + for(i = 0; g.gl_pathv[i]; i++) { printf("Removing %s\n", g.gl_pathv[i]); - if (do_rm(conn, g.gl_pathv[i]) == -1) + if (do_rm(in, out, g.gl_pathv[i]) == -1) err = -1; } break; @@ -699,19 +699,19 @@ attrib_clear(&a); a.flags |= SSH2_FILEXFER_ATTR_PERMISSIONS; a.perm = 0777; - err = do_mkdir(conn, path1, &a); + err = do_mkdir(in, out, path1, &a); break; case I_RMDIR: path1 = make_absolute(path1, *pwd); - err = do_rmdir(conn, path1); + err = do_rmdir(in, out, path1); break; case I_CHDIR: path1 = make_absolute(path1, *pwd); - if ((tmp = do_realpath(conn, path1)) == NULL) { + if ((tmp = do_realpath(in, out, path1)) == NULL) { err = 1; break; } - if ((aa = do_stat(conn, tmp, 0)) == NULL) { + if ((aa = do_stat(in, out, tmp, 0)) == NULL) { xfree(tmp); err = 1; break; @@ -734,22 +734,22 @@ break; case I_LS: if (!path1) { - do_ls(conn, *pwd); + do_ls(in, out, *pwd); break; } path1 = make_absolute(path1, *pwd); - if ((tmp = do_realpath(conn, path1)) == NULL) + if ((tmp = do_realpath(in, out, path1)) == NULL) break; xfree(path1); path1 = tmp; - if ((aa = do_stat(conn, path1, 0)) == NULL) + if ((aa = do_stat(in, out, path1, 0)) == NULL) break; if ((aa->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) && !S_ISDIR(aa->perm)) { error("Can't ls: \"%s\" is not a directory", path1); break; } - do_ls(conn, path1); + do_ls(in, out, path1); break; case I_LCHDIR: if (chdir(path1) == -1) { @@ -780,17 +780,17 @@ attrib_clear(&a); a.flags |= SSH2_FILEXFER_ATTR_PERMISSIONS; a.perm = n_arg; - remote_glob(conn, path1, GLOB_NOCHECK, NULL, &g); - for (i = 0; g.gl_pathv[i]; i++) { + remote_glob(in, out, path1, GLOB_NOCHECK, NULL, &g); + for(i = 0; g.gl_pathv[i]; i++) { printf("Changing mode on %s\n", g.gl_pathv[i]); - do_setstat(conn, g.gl_pathv[i], &a); + do_setstat(in, out, g.gl_pathv[i], &a); } break; case I_CHOWN: path1 = make_absolute(path1, *pwd); - remote_glob(conn, path1, GLOB_NOCHECK, NULL, &g); - for (i = 0; g.gl_pathv[i]; i++) { - if (!(aa = do_stat(conn, g.gl_pathv[i], 0))) + remote_glob(in, out, path1, GLOB_NOCHECK, NULL, &g); + for(i = 0; g.gl_pathv[i]; i++) { + if (!(aa = do_stat(in, out, g.gl_pathv[i], 0))) continue; if (!(aa->flags & SSH2_FILEXFER_ATTR_UIDGID)) { error("Can't get current ownership of " @@ -800,14 +800,14 @@ printf("Changing owner on %s\n", g.gl_pathv[i]); aa->flags &= SSH2_FILEXFER_ATTR_UIDGID; aa->uid = n_arg; - do_setstat(conn, g.gl_pathv[i], aa); + do_setstat(in, out, g.gl_pathv[i], aa); } break; case I_CHGRP: path1 = make_absolute(path1, *pwd); - remote_glob(conn, path1, GLOB_NOCHECK, NULL, &g); - for (i = 0; g.gl_pathv[i]; i++) { - if (!(aa = do_stat(conn, g.gl_pathv[i], 0))) + remote_glob(in, out, path1, GLOB_NOCHECK, NULL, &g); + for(i = 0; g.gl_pathv[i]; i++) { + if (!(aa = do_stat(in, out, g.gl_pathv[i], 0))) continue; if (!(aa->flags & SSH2_FILEXFER_ATTR_UIDGID)) { error("Can't get current ownership of " @@ -817,7 +817,7 @@ printf("Changing group on %s\n", g.gl_pathv[i]); aa->flags &= SSH2_FILEXFER_ATTR_UIDGID; aa->gid = n_arg; - do_setstat(conn, g.gl_pathv[i], aa); + do_setstat(in, out, g.gl_pathv[i], aa); } break; case I_PWD: @@ -837,7 +837,7 @@ help(); break; case I_VERSION: - printf("SFTP protocol version %d\n", sftp_proto_version(conn)); + printf("SFTP protocol version %d\n", version); break; default: fatal("%d is not implemented", cmdnum); @@ -863,13 +863,12 @@ char *pwd; char *dir = NULL; char cmd[2048]; - struct sftp_conn *conn; - conn = do_init(fd_in, fd_out, copy_buffer_len, num_requests); - if (conn == NULL) + version = do_init(fd_in, fd_out); + if (version == -1) fatal("Couldn't initialise connection to server"); - pwd = do_realpath(conn, "."); + pwd = do_realpath(fd_in, fd_out, "."); if (pwd == NULL) fatal("Need cwd"); @@ -877,10 +876,10 @@ dir = xstrdup(file1); dir = make_absolute(dir, pwd); - if (remote_is_dir(conn, dir) && file2 == NULL) { + if (remote_is_dir(fd_in, fd_out, dir) && file2 == NULL) { printf("Changing to: %s\n", dir); snprintf(cmd, sizeof cmd, "cd \"%s\"", dir); - parse_dispatch_command(conn, cmd, &pwd); + parse_dispatch_command(fd_in, fd_out, cmd, &pwd); } else { if (file2 == NULL) snprintf(cmd, sizeof cmd, "get %s", dir); @@ -888,16 +887,14 @@ snprintf(cmd, sizeof cmd, "get %s %s", dir, file2); - parse_dispatch_command(conn, cmd, &pwd); - xfree(dir); + parse_dispatch_command(fd_in, fd_out, cmd, &pwd); return; } - xfree(dir); } setvbuf(stdout, NULL, _IOLBF, 0); setvbuf(infile, NULL, _IOLBF, 0); - for (;;) { + for(;;) { char *cp; printf("sftp> "); @@ -913,7 +910,7 @@ if (cp) *cp = '\0'; - if (parse_dispatch_command(conn, cmd, &pwd)) + if (parse_dispatch_command(fd_in, fd_out, cmd, &pwd)) break; } xfree(pwd);