unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Kostadin Ninev <k.ninev@cdots.bg>
To: Ihor Radchenko <yantar92@posteo.net>, Eli Zaretskii <eliz@gnu.org>
Cc: Bastien <bzg@gnu.org>, 63578@debbugs.gnu.org
Subject: bug#63578: 29.0.91; Org Cannot tangle with tramp using sudo
Date: Fri, 19 May 2023 06:55:25 +0000	[thread overview]
Message-ID: <1684478884235.2095630179.550284088@cdots.bg> (raw)
In-Reply-To: <87v8goltku.fsf@localhost>



 >On Friday, May 19, 2023 9:32 AM (+03:00), Ihor Radchenko wrote:
 > It would help to do M-x toggle-debug-on-quit ... try to tangle ... C-g,
 > and share the backtrace.

This the backtrace:


Debugger entered--Lisp error: (quit "")
   signal(quit (""))
   tramp-error(nil quit "")
   tramp-signal-hook-	(quit (""))
   signal(quit (""))
   tramp-maybe-open-connection((tramp-file-name "sudo" #("root" 0 4 
(tramp-default t)) nil #("server" 0 6 (tramp-default t)) nil 
"/etc/test.conf" nil))
   tramp-send-command((tramp-file-name "sudo" #("root" 0 4 (tramp-default 
t)) nil #("server" 0 6 (tramp-default t)) nil "/etc/test.conf" nil) "test 0 
2>/dev/null; echo tramp_exit_status $?")
   tramp-send-command-and-check((tramp-file-name "sudo" #("root" 0 4 
(tramp-default t)) nil #("server" 0 6 (tramp-default t)) nil 
"/etc/test.conf" nil) "test 0")
   tramp-get-test-command((tramp-file-name "sudo" #("root" 0 4 
(tramp-default t)) nil #("server" 0 6 (tramp-default t)) nil 
"/etc/test.conf" nil))
   tramp-find-file-exists-command((tramp-file-name "sudo" #("root" 0 4 
(tramp-default t)) nil #("server" 0 6 (tramp-default t)) nil 
"/etc/test.conf" nil))
   tramp-get-file-exists-command((tramp-file-name "sudo" #("root" 0 4 
(tramp-default t)) nil #("server" 0 6 (tramp-default t)) nil 
"/etc/test.conf" nil))
   tramp-sh-handle-file-exists-p(#("/sudo:root@server:/etc/test.conf" 6 10 
(tramp-default t) 11 17 (tramp-default t)))
   tramp-sh-file-name-handler(file-exists-p 
#("/sudo:root@server:/etc/test.conf" 6 10 (tramp-default t) 11 17 
(tramp-default t)))
   apply(tramp-sh-file-name-handler file-exists-p 
#("/sudo:root@server:/etc/test.conf" 6 10 (tramp-default t) 11 17 
(tramp-default t)))
   tramp-file-name-handler(file-exists-p 
#("/sudo:root@server:/etc/test.conf" 6 10 (tramp-default t) 11 17 
(tramp-default t)))
   file-exists-p("/ssh:server|sudo::/etc/test.conf")
   #f(compiled-function (by-fn) #<bytecode 
0x3457b099ed4fa83>)(("/ssh:server|sudo::/etc/test.conf" ("conf" 5 "1.org" 
"file:/home/user/1.org::*test" "test:1" ((:colname-names) (:rowname-names) 
(:result-params "replace") (:result-type . value) (:results . "replace") 
(:exports . "code") (:tangle . "/ssh:server|sudo::/etc/test.conf") (:hlines 
. "no") (:noweb . "no") (:cache . "no") (:session . "none")) "test" nil)))
   org-babel-tangle(nil)
   funcall-interactively(org-babel-tangle nil)
   command-execute(org-babel-tangle)


 > Eli Zaretskii  writes:
 > 
 > >> Triyng to tangle this org block on emacs 29.0.91 with emacs -Q
 > >> 
 > >> #+begin_src conf :tangle /ssh:user@server|sudo::/etc/test.conf
 > >> test
 > >> #+end_src
 > >> 
 > >> It hangs with Opening connection nil for root@server using sudo.... 
If I
 > >> install emacs 28 everything works fine.
 > > ...
 > > Adding Org developers to CC, in case Org has something to do with
 > > this.
 > 
 > It would help to do M-x toggle-debug-on-quit ... try to tangle ... C-g,
 > and share the backtrace.
 > 
 > The suspicious, recently changed part of the tangle code is below.
 > I do not see anything fishy there, even when file is remote.
 > 
 > (unless
 >                        (and (file-exists-p file-name)
 >                             (let ((tangle-buf (current-buffer)))
 >                               (with-temp-buffer
 >                                 (insert-file-contents file-name)
 >                                 (and
 >                                  (equal (buffer-size)
 >                                         (buffer-size tangle-buf))
 >                                  (= 0
 >                                     (let (case-fold-search)
 >                                       (compare-buffer-substrings
 >                                        nil nil nil
 >                                        tangle-buf nil nil)))))))
 >                      ;; erase previous file
 >                      (when (file-exists-p file-name)
 >                        (delete-file file-name))
 > 		     (write-region nil nil file-name)
 > 		     (mapc (lambda (mode) (set-file-modes file-name mode)) modes))
 > 

-- 
Kostadin Ninev.





  reply	other threads:[~2023-05-19  6:55 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-18 19:21 bug#63578: 29.0.91; Org Cannot tangle with tramp using sudo k.ninev@cdots.bg via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-05-19  5:54 ` Eli Zaretskii
2023-05-19  6:32   ` Ihor Radchenko
2023-05-19  6:55     ` Kostadin Ninev [this message]
2023-05-19  7:17       ` Ihor Radchenko
2023-05-19  7:18         ` Kostadin Ninev
2023-05-19  7:28           ` Ihor Radchenko
2023-05-19  9:12             ` Kostadin Ninev
2023-05-19  9:43               ` Michael Albinus
2023-05-19  9:49                 ` Kostadin Ninev
2023-05-19 10:57                 ` Kostadin Ninev
2023-05-20  8:30                 ` Kostadin Ninev
2023-05-20 11:16                   ` Michael Albinus
2023-05-20 11:26                     ` Kostadin Ninev
2023-05-20 11:50                       ` Michael Albinus
2023-05-20 11:53                         ` Kostadin Ninev
2023-05-20 14:48                           ` Michael Albinus
2023-05-20 16:50                             ` Michael Albinus
2023-05-20 17:09                               ` Kostadin Ninev
2023-05-22 10:44                                 ` Michael Albinus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1684478884235.2095630179.550284088@cdots.bg \
    --to=k.ninev@cdots.bg \
    --cc=63578@debbugs.gnu.org \
    --cc=bzg@gnu.org \
    --cc=eliz@gnu.org \
    --cc=yantar92@posteo.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).