Blame SOURCES/tftp-0.49-cmd_arg.patch

ecbeaa
diff -up tftp-hpa-0.49/config.h.cmd_arg tftp-hpa-0.49/config.h
ecbeaa
--- tftp-hpa-0.49/config.h.cmd_arg	2010-04-19 15:29:10.567331454 +0200
ecbeaa
+++ tftp-hpa-0.49/config.h	2010-04-20 07:33:03.133232772 +0200
ecbeaa
@@ -291,6 +291,7 @@ typedef int socklen_t;
ecbeaa
 /* Prototypes for libxtra functions */
ecbeaa
 
ecbeaa
 void *xmalloc(size_t);
ecbeaa
+void *xrealloc(void *, size_t);
ecbeaa
 char *xstrdup(const char *);
ecbeaa
 
ecbeaa
 #ifndef HAVE_BSD_SIGNAL
ecbeaa
diff -up tftp-hpa-0.49/configure.in.cmd_arg tftp-hpa-0.49/configure.in
ecbeaa
--- tftp-hpa-0.49/configure.in.cmd_arg	2008-10-21 00:08:31.000000000 +0200
ecbeaa
+++ tftp-hpa-0.49/configure.in	2010-04-19 11:05:12.387340698 +0200
ecbeaa
@@ -152,6 +152,7 @@ OBJROOT=`pwd`
ecbeaa
 
ecbeaa
 XTRA=false
ecbeaa
 PA_SEARCH_LIBS_AND_ADD(xmalloc, iberty)
ecbeaa
+PA_SEARCH_LIBS_AND_ADD(xrealloc, iberty)
ecbeaa
 PA_SEARCH_LIBS_AND_ADD(xstrdup, iberty)
ecbeaa
 PA_SEARCH_LIBS_AND_ADD(bsd_signal, bsd, bsdsignal)
ecbeaa
 PA_SEARCH_LIBS_AND_ADD(getopt_long, getopt, getopt_long)
ecbeaa
diff -up tftp-hpa-0.49/lib/xrealloc.c.cmd_arg tftp-hpa-0.49/lib/xrealloc.c
ecbeaa
--- tftp-hpa-0.49/lib/xrealloc.c.cmd_arg	2010-04-19 11:05:12.387340698 +0200
ecbeaa
+++ tftp-hpa-0.49/lib/xrealloc.c	2010-04-19 11:05:12.387340698 +0200
ecbeaa
@@ -0,0 +1,20 @@
ecbeaa
+/*
ecbeaa
+ * xrealloc.c
ecbeaa
+ *
ecbeaa
+ * Simple error-checking version of realloc()
ecbeaa
+ *
ecbeaa
+ */
ecbeaa
+
ecbeaa
+#include "config.h"
ecbeaa
+
ecbeaa
+void *xrealloc(void *ptr, size_t size)
ecbeaa
+{
ecbeaa
+    void *p = realloc(ptr, size);
ecbeaa
+
ecbeaa
+    if (!p) {
ecbeaa
+        fprintf(stderr, "Out of memory!\n");
ecbeaa
+        exit(128);
ecbeaa
+    }
ecbeaa
+
ecbeaa
+    return p;
ecbeaa
+}
ecbeaa
diff -up tftp-hpa-0.49/tftp/main.c.cmd_arg tftp-hpa-0.49/tftp/main.c
ecbeaa
--- tftp-hpa-0.49/tftp/main.c.cmd_arg	2008-10-21 00:08:31.000000000 +0200
ecbeaa
+++ tftp-hpa-0.49/tftp/main.c	2010-04-19 11:05:12.389329337 +0200
ecbeaa
@@ -89,11 +89,14 @@ int connected;
ecbeaa
 const struct modes *mode;
ecbeaa
 #ifdef WITH_READLINE
ecbeaa
 char *line = NULL;
ecbeaa
+char *remote_pth = NULL;
ecbeaa
 #else
ecbeaa
 char line[LBUFLEN];
ecbeaa
+char remote_pth[LBUFLEN];
ecbeaa
 #endif
ecbeaa
 int margc;
ecbeaa
-char *margv[20];
ecbeaa
+char **margv;
ecbeaa
+int sizeof_margv=0;
ecbeaa
 const char *prompt = "tftp> ";
ecbeaa
 sigjmp_buf toplevel;
ecbeaa
 void intr(int);
ecbeaa
@@ -379,6 +382,10 @@ static void getmoreargs(const char *part
ecbeaa
         free(line);
ecbeaa
         line = NULL;
ecbeaa
     }
ecbeaa
+    if (remote_pth) {
ecbeaa
+        free(remote_pth);
ecbeaa
+        remote_pth = NULL;
ecbeaa
+    }
ecbeaa
     line = xmalloc(len + elen + 1);
ecbeaa
     strcpy(line, partial);
ecbeaa
     strcpy(line + len, eline);
ecbeaa
@@ -535,6 +542,7 @@ void put(int argc, char *argv[])
ecbeaa
     int fd;
ecbeaa
     int n, err;
ecbeaa
     char *cp, *targ;
ecbeaa
+    long dirlen, namelen, lastlen=0;
ecbeaa
 
ecbeaa
     if (argc < 2) {
ecbeaa
         getmoreargs("send ", "(file) ");
ecbeaa
@@ -588,9 +596,22 @@ void put(int argc, char *argv[])
ecbeaa
     }
ecbeaa
     /* this assumes the target is a directory */
ecbeaa
     /* on a remote unix system.  hmmmm.  */
ecbeaa
-    cp = strchr(targ, '\0');
ecbeaa
-    *cp++ = '/';
ecbeaa
+    dirlen = strlen(targ)+1;
ecbeaa
+#ifdef WITH_READLINE
ecbeaa
+    remote_pth = xmalloc(dirlen+1);
ecbeaa
+#endif
ecbeaa
+    strcpy(remote_pth, targ);
ecbeaa
+    remote_pth[dirlen-1] = '/';
ecbeaa
+    cp = remote_pth + dirlen;
ecbeaa
     for (n = 1; n < argc - 1; n++) {
ecbeaa
+#ifdef WITH_READLINE
ecbeaa
+        namelen = strlen(tail(argv[n])) + 1;
ecbeaa
+        if (namelen > lastlen) {
ecbeaa
+            remote_pth = xrealloc(remote_pth, dirlen + namelen + 1);
ecbeaa
+            cp = remote_pth + dirlen;
ecbeaa
+            lastlen = namelen;
ecbeaa
+        }
ecbeaa
+#endif
ecbeaa
         strcpy(cp, tail(argv[n]));
ecbeaa
         fd = open(argv[n], O_RDONLY | mode->m_openflags);
ecbeaa
         if (fd < 0) {
ecbeaa
@@ -600,9 +621,9 @@ void put(int argc, char *argv[])
ecbeaa
         }
ecbeaa
         if (verbose)
ecbeaa
             printf("putting %s to %s:%s [%s]\n",
ecbeaa
-                   argv[n], hostname, targ, mode->m_mode);
ecbeaa
+                   argv[n], hostname, remote_pth, mode->m_mode);
ecbeaa
         sa_set_port(&peeraddr, port);
ecbeaa
-        tftp_sendfile(fd, targ, mode->m_mode);
ecbeaa
+        tftp_sendfile(fd, remote_pth, mode->m_mode);
ecbeaa
     }
ecbeaa
 }
ecbeaa
 
ecbeaa
@@ -801,6 +822,10 @@ static void command(void)
ecbeaa
             free(line);
ecbeaa
             line = NULL;
ecbeaa
         }
ecbeaa
+        if (remote_pth) {
ecbeaa
+            free(remote_pth);
ecbeaa
+            remote_pth = NULL;
ecbeaa
+        }
ecbeaa
         line = readline(prompt);
ecbeaa
         if (!line)
ecbeaa
             exit(0);            /* EOF */
ecbeaa
@@ -872,7 +897,13 @@ struct cmd *getcmd(char *name)
ecbeaa
 static void makeargv(void)
ecbeaa
 {
ecbeaa
     char *cp;
ecbeaa
-    char **argp = margv;
ecbeaa
+    char **argp;
ecbeaa
+
ecbeaa
+    if (!sizeof_margv) {
ecbeaa
+        sizeof_margv = 20;
ecbeaa
+        margv = xmalloc(sizeof_margv * sizeof(char *));
ecbeaa
+    }
ecbeaa
+    argp = margv;
ecbeaa
 
ecbeaa
     margc = 0;
ecbeaa
     for (cp = line; *cp;) {
ecbeaa
@@ -882,6 +913,11 @@ static void makeargv(void)
ecbeaa
             break;
ecbeaa
         *argp++ = cp;
ecbeaa
         margc += 1;
ecbeaa
+        if (margc == sizeof_margv) {
ecbeaa
+            sizeof_margv += 20;
ecbeaa
+            margv = xrealloc(margv, sizeof_margv * sizeof(char *));
ecbeaa
+            argp = margv + margc;
ecbeaa
+        }
ecbeaa
         while (*cp != '\0' && !isspace(*cp))
ecbeaa
             cp++;
ecbeaa
         if (*cp == '\0')