All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] tftp: fake support for netascii protocol
@ 2016-11-17 12:20 Vincent Bernat
  2016-11-17 12:22 ` Vincent Bernat
  2016-11-17 15:27 ` no-reply
  0 siblings, 2 replies; 5+ messages in thread
From: Vincent Bernat @ 2016-11-17 12:20 UTC (permalink / raw)
  To: Samuel Thibault, Jan Kiszka, qemu-devel; +Cc: Vincent Bernat

From: Vincent Bernat <vincent@bernat.im>

Some network equipments are requesting a file using the netascii
protocol and this is not configurable. Currently, qemu's tftpd only
supports the octet protocol. This commit makes it accept the netascii
protocol as well but do not perform the requested transformation (LF ->
CR,LF) as it would be far more complex. The current implementation is
good enough. A user has always the choice to preencode the served file
correctly.
---
 slirp/tftp.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/slirp/tftp.c b/slirp/tftp.c
index c1859066ccb2..ab1c05d5d42c 100644
--- a/slirp/tftp.c
+++ b/slirp/tftp.c
@@ -326,13 +326,15 @@ static void tftp_handle_rrq(Slirp *slirp, struct sockaddr_storage *srcsas,
     return;
   }
 
-  if (strcasecmp(&tp->x.tp_buf[k], "octet") != 0) {
+  if (strcasecmp(&tp->x.tp_buf[k], "octet") == 0) {
+      k += 6;
+  } else if (strcasecmp(&tp->x.tp_buf[k], "netascii") == 0) {
+      k += 9;
+  } else {
       tftp_send_error(spt, 4, "Unsupported transfer mode", tp);
       return;
   }
 
-  k += 6; /* skipping octet */
-
   /* do sanity checks on the filename */
   if (!strncmp(req_fname, "../", 3) ||
       req_fname[strlen(req_fname) - 1] == '/' ||
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] tftp: fake support for netascii protocol
  2016-11-17 12:20 [Qemu-devel] [PATCH] tftp: fake support for netascii protocol Vincent Bernat
@ 2016-11-17 12:22 ` Vincent Bernat
  2016-11-18 17:52   ` Samuel Thibault
  2016-11-17 15:27 ` no-reply
  1 sibling, 1 reply; 5+ messages in thread
From: Vincent Bernat @ 2016-11-17 12:22 UTC (permalink / raw)
  To: Samuel Thibault; +Cc: Jan Kiszka, qemu-devel

 ❦ 17 novembre 2016 13:20 +0100, Vincent Bernat <Vincent.Bernat@exoscale.ch> :

> Some network equipments are requesting a file using the netascii
> protocol and this is not configurable. Currently, qemu's tftpd only
> supports the octet protocol. This commit makes it accept the netascii
> protocol as well but do not perform the requested transformation (LF ->
> CR,LF) as it would be far more complex. The current implementation is
> good enough. A user has always the choice to preencode the served file
> correctly.

Signed-off-by: Vincent Bernat <vincent@bernat.im>

(forgot to do that in the original patch)
-- 
Vincent Bernat — Vincent.Bernat@exoscale.ch
❬❱ https://www.exoscale.ch

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] tftp: fake support for netascii protocol
  2016-11-17 12:20 [Qemu-devel] [PATCH] tftp: fake support for netascii protocol Vincent Bernat
  2016-11-17 12:22 ` Vincent Bernat
@ 2016-11-17 15:27 ` no-reply
  2016-11-17 15:58   ` Vincent Bernat
  1 sibling, 1 reply; 5+ messages in thread
From: no-reply @ 2016-11-17 15:27 UTC (permalink / raw)
  To: Vincent.Bernat; +Cc: famz, samuel.thibault, jan.kiszka, qemu-devel, vincent

Hi,

Your series seems to have some coding style problems. See output below for
more information:

Subject: [Qemu-devel] [PATCH] tftp: fake support for netascii protocol
Type: series
Message-id: 20161117122000.22577-1-Vincent.Bernat@exoscale.ch

=== TEST SCRIPT BEGIN ===
#!/bin/bash

BASE=base
n=1
total=$(git log --oneline $BASE.. | wc -l)
failed=0

# Useful git options
git config --local diff.renamelimit 0
git config --local diff.renames True

commits="$(git log --format=%H --reverse $BASE..)"
for c in $commits; do
    echo "Checking PATCH $n/$total: $(git log -n 1 --format=%s $c)..."
    if ! git show $c --format=email | ./scripts/checkpatch.pl --mailback -; then
        failed=1
        echo
    fi
    n=$((n+1))
done

exit $failed
=== TEST SCRIPT END ===

Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
From https://github.com/patchew-project/qemu
 * [new tag]         patchew/20161117122000.22577-1-Vincent.Bernat@exoscale.ch -> patchew/20161117122000.22577-1-Vincent.Bernat@exoscale.ch
Switched to a new branch 'test'
bfea015 tftp: fake support for netascii protocol

=== OUTPUT BEGIN ===
Checking PATCH 1/1: tftp: fake support for netascii protocol...
ERROR: suspect code indent for conditional statements (2, 6)
#24: FILE: slirp/tftp.c:329:
+  if (strcasecmp(&tp->x.tp_buf[k], "octet") == 0) {
+      k += 6;

ERROR: suspect code indent for conditional statements (2, 6)
#26: FILE: slirp/tftp.c:331:
+  } else if (strcasecmp(&tp->x.tp_buf[k], "netascii") == 0) {
+      k += 9;

ERROR: Missing Signed-off-by: line(s)

total: 3 errors, 0 warnings, 18 lines checked

Your patch has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.

=== OUTPUT END ===

Test command exited with code: 1


---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to patchew-devel@freelists.org

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] tftp: fake support for netascii protocol
  2016-11-17 15:27 ` no-reply
@ 2016-11-17 15:58   ` Vincent Bernat
  0 siblings, 0 replies; 5+ messages in thread
From: Vincent Bernat @ 2016-11-17 15:58 UTC (permalink / raw)
  To: qemu-devel, famz, samuel.thibault, jan.kiszka

 ❦ 17 novembre 2016 07:27 -0800, no-reply@patchew.org :

> === OUTPUT BEGIN ===
> Checking PATCH 1/1: tftp: fake support for netascii protocol...
> ERROR: suspect code indent for conditional statements (2, 6)
> #24: FILE: slirp/tftp.c:329:
> +  if (strcasecmp(&tp->x.tp_buf[k], "octet") == 0) {
> +      k += 6;
>
> ERROR: suspect code indent for conditional statements (2, 6)
> #26: FILE: slirp/tftp.c:331:
> +  } else if (strcasecmp(&tp->x.tp_buf[k], "netascii") == 0) {
> +      k += 9;

Indentation is consistent with what the remaining of the file.

> ERROR: Missing Signed-off-by: line(s)

Should I resend the patch for that or the amendment I sent in another
mail is sufficient?
-- 
Vincent Bernat — Vincent.Bernat@exoscale.ch
❬❱ https://www.exoscale.ch

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] tftp: fake support for netascii protocol
  2016-11-17 12:22 ` Vincent Bernat
@ 2016-11-18 17:52   ` Samuel Thibault
  0 siblings, 0 replies; 5+ messages in thread
From: Samuel Thibault @ 2016-11-18 17:52 UTC (permalink / raw)
  To: Vincent Bernat; +Cc: Jan Kiszka, qemu-devel

Hello,

Vincent Bernat, on Thu 17 Nov 2016 13:22:32 +0100, wrote:
>  ❦ 17 novembre 2016 13:20 +0100, Vincent Bernat <Vincent.Bernat@exoscale.ch> :
> 
> > Some network equipments are requesting a file using the netascii
> > protocol and this is not configurable. Currently, qemu's tftpd only
> > supports the octet protocol. This commit makes it accept the netascii
> > protocol as well but do not perform the requested transformation (LF ->
> > CR,LF) as it would be far more complex. The current implementation is
> > good enough. A user has always the choice to preencode the served file
> > correctly.
> 
> Signed-off-by: Vincent Bernat <vincent@bernat.im>

Thanks, I've pushed to my tree and requested a pull.

Samuel

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-11-18 17:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-17 12:20 [Qemu-devel] [PATCH] tftp: fake support for netascii protocol Vincent Bernat
2016-11-17 12:22 ` Vincent Bernat
2016-11-18 17:52   ` Samuel Thibault
2016-11-17 15:27 ` no-reply
2016-11-17 15:58   ` Vincent Bernat

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.