* nntp.el (nntp-send-authinfo): Query `auth-source-search' with the logical server...
[gnus] / lisp / nntp.el
1 ;;; nntp.el --- nntp access for Gnus
2
3 ;; Copyright (C) 1987-1990, 1992-1998, 2000-2012
4 ;;   Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 ;; For Emacs <22.2 and XEmacs.
29 (eval-and-compile
30   (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))
31   ;; In Emacs 24, `open-protocol-stream' is an autoloaded alias for
32   ;; `make-network-stream'.
33   (unless (fboundp 'open-protocol-stream)
34     (require 'proto-stream)))
35
36 (require 'nnheader)
37 (require 'nnoo)
38 (require 'gnus-util)
39 (require 'gnus)
40 (require 'gnus-group) ;; gnus-group-name-charset
41
42 (nnoo-declare nntp)
43
44 (eval-when-compile (require 'cl))
45
46 (autoload 'auth-source-search "auth-source")
47
48 (defgroup nntp nil
49   "NNTP access for Gnus."
50   :group 'gnus)
51
52 (defvoo nntp-address nil
53   "Address of the physical nntp server.")
54
55 (defvoo nntp-port-number "nntp"
56   "Port number on the physical nntp server.")
57
58 (defvoo nntp-server-opened-hook '(nntp-send-mode-reader)
59   "*Hook used for sending commands to the server at startup.
60 The default value is `nntp-send-mode-reader', which makes an innd
61 server spawn an nnrpd server.")
62
63 (defvoo nntp-authinfo-function 'nntp-send-authinfo
64   "Function used to send AUTHINFO to the server.
65 It is called with no parameters.")
66
67 (defvoo nntp-server-action-alist
68     '(("nntpd 1\\.5\\.11t"
69        (remove-hook 'nntp-server-opened-hook 'nntp-send-mode-reader))
70       ("NNRP server Netscape"
71        (setq nntp-server-list-active-group nil)))
72   "Alist of regexps to match on server types and actions to be taken.
73 For instance, if you want Gnus to beep every time you connect
74 to innd, you could say something like:
75
76 \(setq nntp-server-action-alist
77        '((\"innd\" (ding))))
78
79 You probably don't want to do that, though.")
80
81 (defvoo nntp-open-connection-function 'nntp-open-network-stream
82   "Method for connecting to a remote system.
83 It should be a function, which is called with the output buffer
84 as its single argument, or one of the following special values:
85
86 - `nntp-open-network-stream' specifies a network connection,
87   upgrading to a TLS connection via STARTTLS if possible.
88 - `nntp-open-plain-stream' specifies an unencrypted network
89   connection (no STARTTLS upgrade is attempted).
90 - `nntp-open-ssl-stream' or `nntp-open-tls-stream' specify a TLS
91   network connection.
92
93 Apart from the above special values, valid functions are as
94 follows; please refer to their respective doc string for more
95 information.
96 For direct connections:
97 - `nntp-open-netcat-stream'
98 - `nntp-open-telnet-stream'
99 For indirect connections:
100 - `nntp-open-via-rlogin-and-netcat'
101 - `nntp-open-via-rlogin-and-telnet'
102 - `nntp-open-via-telnet-and-telnet'")
103
104 (defvoo nntp-never-echoes-commands nil
105   "*Non-nil means the nntp server never echoes commands.
106 It is reported that some nntps server doesn't echo commands.  So, you
107 may want to set this to non-nil in the method for such a server setting
108 `nntp-open-connection-function' to `nntp-open-ssl-stream' for example.
109 Note that the `nntp-open-connection-functions-never-echo-commands'
110 variable overrides the nil value of this variable.")
111
112 (defvoo nntp-open-connection-functions-never-echo-commands
113     '(nntp-open-network-stream)
114   "*List of functions that never echo commands.
115 Add or set a function which you set to `nntp-open-connection-function'
116 to this list if it does not echo commands.  Note that a non-nil value
117 of the `nntp-never-echoes-commands' variable overrides this variable.")
118
119 (defvoo nntp-pre-command nil
120   "*Pre-command to use with the various nntp-open-via-* methods.
121 This is where you would put \"runsocks\" or stuff like that.")
122
123 (defvoo nntp-telnet-command "telnet"
124   "*Telnet command used to connect to the nntp server.
125 This command is used by the methods `nntp-open-telnet-stream',
126 `nntp-open-via-rlogin-and-telnet' and `nntp-open-via-telnet-and-telnet'.")
127
128 (defvoo nntp-telnet-switches '("-8")
129   "*Switches given to the telnet command `nntp-telnet-command'.")
130
131 (defvoo nntp-end-of-line "\r\n"
132   "*String to use on the end of lines when talking to the NNTP server.
133 This is \"\\r\\n\" by default, but should be \"\\n\" when using an indirect
134 connection method (nntp-open-via-*).")
135
136 (defvoo nntp-via-rlogin-command "rsh"
137   "*Rlogin command used to connect to an intermediate host.
138 This command is used by the methods `nntp-open-via-rlogin-and-telnet'
139 and `nntp-open-via-rlogin-and-netcat'.  The default is \"rsh\", but \"ssh\"
140 is a popular alternative.")
141
142 (defvoo nntp-via-rlogin-command-switches nil
143   "*Switches given to the rlogin command `nntp-via-rlogin-command'.
144 If you use \"ssh\" for `nntp-via-rlogin-command', you may set this to
145 \(\"-C\") in order to compress all data connections, otherwise set this
146 to \(\"-t\" \"-e\" \"none\") or (\"-C\" \"-t\" \"-e\" \"none\") if the telnet
147 command requires a pseudo-tty allocation on an intermediate host.")
148
149 (defvoo nntp-via-telnet-command "telnet"
150   "*Telnet command used to connect to an intermediate host.
151 This command is used by the `nntp-open-via-telnet-and-telnet' method.")
152
153 (defvoo nntp-via-telnet-switches '("-8")
154   "*Switches given to the telnet command `nntp-via-telnet-command'.")
155
156 (defvoo nntp-netcat-command "nc"
157   "*Netcat command used to connect to the nntp server.
158 This command is used by the `nntp-open-netcat-stream' and
159 `nntp-open-via-rlogin-and-netcat' methods.")
160
161 (defvoo nntp-netcat-switches nil
162   "*Switches given to the netcat command `nntp-netcat-command'.")
163
164 (defvoo nntp-via-user-name nil
165   "*User name to log in on an intermediate host with.
166 This variable is used by the various nntp-open-via-* methods.")
167
168 (defvoo nntp-via-user-password nil
169   "*Password to use to log in on an intermediate host with.
170 This variable is used by the `nntp-open-via-telnet-and-telnet' method.")
171
172 (defvoo nntp-via-address nil
173   "*Address of an intermediate host to connect to.
174 This variable is used by the various nntp-open-via-* methods.")
175
176 (defvoo nntp-via-envuser nil
177   "*Whether both telnet client and server support the ENVIRON option.
178 If non-nil, there will be no prompt for a login name.")
179
180 (defvoo nntp-via-shell-prompt "bash\\|\$ *\r?$\\|> *\r?"
181   "*Regular expression to match the shell prompt on an intermediate host.
182 This variable is used by the `nntp-open-via-telnet-and-telnet' method.")
183
184 (defvoo nntp-large-newsgroup 50
185   "*The number of articles which indicates a large newsgroup.
186 If the number of articles is greater than the value, verbose
187 messages will be shown to indicate the current status.")
188
189 (defvoo nntp-maximum-request 400
190   "*The maximum number of the requests sent to the NNTP server at one time.
191 If Emacs hangs up while retrieving headers, set the variable to a
192 lower value.")
193
194 (defvoo nntp-nov-is-evil nil
195   "*If non-nil, nntp will never attempt to use XOVER when talking to the server.")
196
197 (defvoo nntp-xover-commands '("XOVER" "XOVERVIEW")
198   "*List of strings that are used as commands to fetch NOV lines from a server.
199 The strings are tried in turn until a positive response is gotten.  If
200 none of the commands are successful, nntp will just grab headers one
201 by one.")
202
203 (defvoo nntp-nov-gap 5
204   "*Maximum allowed gap between two articles.
205 If the gap between two consecutive articles is bigger than this
206 variable, split the XOVER request into two requests.")
207
208 (defvoo nntp-xref-number-is-evil nil
209   "*If non-nil, Gnus never trusts article numbers in the Xref header.
210 Some news servers, e.g., ones running Diablo, run multiple engines
211 having the same articles but article numbers are not kept synchronized
212 between them.  If you connect to such a server, set this to a non-nil
213 value, and Gnus never uses article numbers (that appear in the Xref
214 header and vary by which engine is chosen) to refer to articles.")
215
216 (defvoo nntp-prepare-server-hook nil
217   "*Hook run before a server is opened.
218 If can be used to set up a server remotely, for instance.  Say you
219 have an account at the machine \"other.machine\".  This machine has
220 access to an NNTP server that you can't access locally.  You could
221 then use this hook to rsh to the remote machine and start a proxy NNTP
222 server there that you can connect to.  See also
223 `nntp-open-connection-function'")
224
225 (defvoo nntp-coding-system-for-read 'binary
226   "*Coding system to read from NNTP.")
227
228 (defvoo nntp-coding-system-for-write 'binary
229   "*Coding system to write to NNTP.")
230
231 ;; Marks
232 (defvoo nntp-marks-is-evil nil
233   "*If non-nil, Gnus will never generate and use marks file for nntp groups.
234 See `nnml-marks-is-evil' for more information.")
235
236 (defvoo nntp-marks-file-name ".marks")
237 (defvoo nntp-marks nil)
238 (defvar nntp-marks-modtime (gnus-make-hashtable))
239
240 (defcustom nntp-marks-directory
241   (nnheader-concat gnus-directory "marks/")
242   "*The directory where marks for nntp groups will be stored."
243   :group 'nntp
244   :type 'directory)
245
246 (defcustom nntp-authinfo-file "~/.authinfo"
247   ".netrc-like file that holds nntp authinfo passwords."
248   :group 'nntp
249   :type
250   '(choice file
251            (repeat :tag "Entries"
252                    :menu-tag "Inline"
253                    (list :format "%v"
254                          :value ("" ("login" . "") ("password" . ""))
255                          (string :tag "Host")
256                          (checklist :inline t
257                                     (cons :format "%v"
258                                           (const :format "" "login")
259                                           (string :format "Login: %v"))
260                                     (cons :format "%v"
261                                           (const :format "" "password")
262                                           (string :format "Password: %v")))))))
263
264 (make-obsolete 'nntp-authinfo-file nil "Emacs 24.1")
265
266 \f
267
268 (defvoo nntp-connection-timeout nil
269   "*Number of seconds to wait before an nntp connection times out.
270 If this variable is nil, which is the default, no timers are set.
271 NOTE: This variable is never seen to work in Emacs 20 and XEmacs 21.")
272
273 (defvoo nntp-prepare-post-hook nil
274   "*Hook run just before posting an article.  It is supposed to be used
275 to insert Cancel-Lock headers.")
276
277 (defvoo nntp-server-list-active-group 'try
278   "If nil, then always use GROUP instead of LIST ACTIVE.
279 This is usually slower, but on misconfigured servers that don't
280 update their active files often, this can help.")
281
282 ;;; Internal variables.
283
284 (defvoo nntp-retrieval-in-progress nil)
285 (defvar nntp-record-commands nil
286   "*If non-nil, nntp will record all commands in the \"*nntp-log*\" buffer.")
287
288 (defvar nntp-have-messaged nil)
289
290 (defvar nntp-process-wait-for nil)
291 (defvar nntp-process-to-buffer nil)
292 (defvar nntp-process-callback nil)
293 (defvar nntp-process-decode nil)
294 (defvar nntp-process-start-point nil)
295 (defvar nntp-inside-change-function nil)
296 (defvoo nntp-last-command-time nil)
297 (defvoo nntp-last-command nil)
298 (defvoo nntp-authinfo-password nil)
299 (defvoo nntp-authinfo-user nil)
300 (defvoo nntp-authinfo-force nil)
301
302 (defvar nntp-connection-list nil)
303
304 (defvoo nntp-server-type nil)
305 (defvoo nntp-connection-alist nil)
306 (defvoo nntp-status-string "")
307 (defconst nntp-version "nntp 5.0")
308 (defvoo nntp-inhibit-erase nil)
309 (defvoo nntp-inhibit-output nil)
310
311 (defvoo nntp-server-xover 'try)
312
313 (defvar nntp-async-timer nil)
314 (defvar nntp-async-process-list nil)
315
316 (defvar nntp-authinfo-rejected nil
317 "A custom error condition used to report 'Authentication Rejected' errors.
318 Condition handlers that match just this condition ensure that the nntp
319 backend doesn't catch this error.")
320 (put 'nntp-authinfo-rejected 'error-conditions '(error nntp-authinfo-rejected))
321 (put 'nntp-authinfo-rejected 'error-message "Authorization Rejected")
322
323 \f
324
325 ;;; Internal functions.
326
327 (defsubst nntp-send-string (process string)
328   "Send STRING to PROCESS."
329   ;; We need to store the time to provide timeouts, and
330   ;; to store the command so the we can replay the command
331   ;; if the server gives us an AUTHINFO challenge.
332   (setq nntp-last-command-time (current-time)
333         nntp-last-command string)
334   (when nntp-record-commands
335     (nntp-record-command string))
336   (process-send-string process (concat string nntp-end-of-line))
337   (or (memq (process-status process) '(open run))
338       (nntp-report "Server closed connection")))
339
340 (defun nntp-record-command (string)
341   "Record the command STRING."
342   (with-current-buffer (get-buffer-create "*nntp-log*")
343     (goto-char (point-max))
344     (insert (format-time-string "%Y%m%dT%H%M%S.%3N")
345             " " nntp-address " " string "\n")))
346
347 (defun nntp-report (&rest args)
348   "Report an error from the nntp backend.  The first string in ARGS
349 can be a format string.  For some commands, the failed command may be
350 retried once before actually displaying the error report."
351
352   (when nntp-record-commands
353     (nntp-record-command "*** CALLED nntp-report ***"))
354
355   (nnheader-report 'nntp args)
356
357   (apply 'error args))
358
359 (defun nntp-report-1 (&rest args)
360   "Throws out to nntp-with-open-group-error so that the connection may
361 be restored and the command retried."
362
363   (when nntp-record-commands
364     (nntp-record-command "*** CONNECTION LOST ***"))
365
366   (throw 'nntp-with-open-group-error t))
367
368 (defmacro nntp-copy-to-buffer (buffer start end)
369   "Copy string from unibyte current buffer to multibyte buffer."
370   (if (featurep 'xemacs)
371       `(copy-to-buffer ,buffer ,start ,end)
372     `(let ((string (buffer-substring ,start ,end)))
373        (with-current-buffer ,buffer
374          (erase-buffer)
375          (insert (if enable-multibyte-characters
376                      (mm-string-to-multibyte string)
377                    string))
378          (goto-char (point-min))
379          nil))))
380
381 (defsubst nntp-wait-for (process wait-for buffer &optional decode discard)
382   "Wait for WAIT-FOR to arrive from PROCESS."
383
384   (with-current-buffer (process-buffer process)
385     (goto-char (point-min))
386
387     (while (and (or (not (memq (char-after (point)) '(?2 ?3 ?4 ?5)))
388                     (looking-at "48[02]"))
389                 (memq (process-status process) '(open run)))
390       (cond ((looking-at "480")
391              (nntp-handle-authinfo process))
392             ((looking-at "482")
393              (nnheader-report 'nntp "%s"
394                               (get 'nntp-authinfo-rejected 'error-message))
395              (signal 'nntp-authinfo-rejected nil))
396             ((looking-at "^.*\n")
397              (delete-region (point) (progn (forward-line 1) (point)))))
398       (nntp-accept-process-output process)
399       (goto-char (point-min)))
400     (prog1
401         (cond
402          ((looking-at "[45]")
403           (progn
404             (nntp-snarf-error-message)
405             nil))
406          ((not (memq (process-status process) '(open run)))
407           (nntp-report "Server closed connection"))
408          (t
409           (goto-char (point-max))
410           (let ((limit (point-min))
411                 response)
412             (while (not (re-search-backward wait-for limit t))
413               (nntp-accept-process-output process)
414               ;; We assume that whatever we wait for is less than 1000
415               ;; characters long.
416               (setq limit (max (- (point-max) 1000) (point-min)))
417               (goto-char (point-max)))
418             (setq response (match-string 0))
419             (with-current-buffer nntp-server-buffer
420               (setq nntp-process-response response)))
421           (nntp-decode-text (not decode))
422           (unless discard
423             (with-current-buffer buffer
424               (goto-char (point-max))
425               (nnheader-insert-buffer-substring (process-buffer process))
426               ;; Nix out "nntp reading...." message.
427               (when nntp-have-messaged
428                 (setq nntp-have-messaged nil)
429                 (nnheader-message 5 ""))))
430           t))
431       (unless discard
432         (erase-buffer)))))
433
434 (defun nntp-kill-buffer (buffer)
435   (when (buffer-name buffer)
436     (let ((process (get-buffer-process buffer)))
437       (when process
438         (delete-process process)))
439     (kill-buffer buffer)
440     (nnheader-init-server-buffer)))
441
442 (defun nntp-erase-buffer (buffer)
443   "Erase contents of BUFFER."
444   (with-current-buffer buffer
445     (erase-buffer)))
446
447 (defsubst nntp-find-connection (buffer)
448   "Find the connection delivering to BUFFER."
449   (let ((alist nntp-connection-alist)
450         (buffer (if (stringp buffer) (get-buffer buffer) buffer))
451         process entry)
452     (while (and alist (setq entry (pop alist)))
453       (when (eq buffer (cadr entry))
454         (setq process (car entry)
455               alist nil)))
456     (when process
457       (if (memq (process-status process) '(open run))
458           process
459         (nntp-kill-buffer (process-buffer process))
460         (setq nntp-connection-alist (delq entry nntp-connection-alist))
461         nil))))
462
463 (defsubst nntp-find-connection-entry (buffer)
464   "Return the entry for the connection to BUFFER."
465   (assq (nntp-find-connection buffer) nntp-connection-alist))
466
467 (defun nntp-find-connection-buffer (buffer)
468   "Return the process connection buffer tied to BUFFER."
469   (let ((process (nntp-find-connection buffer)))
470     (when process
471       (process-buffer process))))
472
473 (defsubst nntp-retrieve-data (command address port buffer
474                                       &optional wait-for callback decode)
475   "Use COMMAND to retrieve data into BUFFER from PORT on ADDRESS."
476   (let ((process (or (nntp-find-connection buffer)
477                      (nntp-open-connection buffer))))
478     (if process
479         (progn
480           (unless (or nntp-inhibit-erase nnheader-callback-function)
481             (nntp-erase-buffer (process-buffer process)))
482           (condition-case err
483               (progn
484                 (when command
485                   (nntp-send-string process command))
486                 (cond
487                  ((eq callback 'ignore)
488                   t)
489                  ((and callback wait-for)
490                   (nntp-async-wait process wait-for buffer decode callback)
491                   t)
492                  (wait-for
493                   (nntp-wait-for process wait-for buffer decode))
494                  (t t)))
495             (nntp-authinfo-rejected
496              (signal 'nntp-authinfo-rejected (cdr err)))
497             (error
498              (nnheader-report 'nntp "Couldn't open connection to %s: %s"
499                               address err))
500             (quit
501              (message "Quit retrieving data from nntp")
502              (signal 'quit nil)
503              nil)))
504       (nnheader-report 'nntp "Couldn't open connection to %s" address))))
505
506 (defsubst nntp-send-command (wait-for &rest strings)
507   "Send STRINGS to server and wait until WAIT-FOR returns."
508   (when (and (not nnheader-callback-function)
509              (not nntp-inhibit-output))
510     (nntp-erase-buffer nntp-server-buffer))
511   (let* ((command (mapconcat 'identity strings " "))
512          (process (nntp-find-connection nntp-server-buffer))
513          (buffer (and process (process-buffer process)))
514          (pos (and buffer (with-current-buffer buffer (point)))))
515     (if process
516         (prog1
517             (nntp-retrieve-data command
518                                 nntp-address nntp-port-number
519                                 nntp-server-buffer
520                                 wait-for nnheader-callback-function)
521           ;; If nothing to wait for, still remove possibly echo'ed commands.
522           ;; We don't have echoes if `nntp-never-echoes-commands' is non-nil
523           ;; or the value of `nntp-open-connection-function' is in
524           ;; `nntp-open-connection-functions-never-echo-commands', so we
525           ;; skip this in that cases.
526           (unless (or wait-for
527                       nntp-never-echoes-commands
528                       (memq
529                        nntp-open-connection-function
530                        nntp-open-connection-functions-never-echo-commands))
531             (nntp-accept-response)
532             (with-current-buffer buffer
533               (goto-char pos)
534               (if (looking-at (regexp-quote command))
535                   (delete-region pos (progn (forward-line 1)
536                                             (point-at-bol)))))))
537       (nnheader-report 'nntp "Couldn't open connection to %s."
538                        nntp-address))))
539
540 (defun nntp-send-command-nodelete (wait-for &rest strings)
541   "Send STRINGS to server and wait until WAIT-FOR returns."
542   (let* ((command (mapconcat 'identity strings " "))
543          (process (nntp-find-connection nntp-server-buffer))
544          (buffer (and process (process-buffer process)))
545          (pos (and buffer (with-current-buffer buffer (point)))))
546     (if process
547         (prog1
548             (nntp-retrieve-data command
549                                 nntp-address nntp-port-number
550                                 nntp-server-buffer
551                                 wait-for nnheader-callback-function)
552           ;; If nothing to wait for, still remove possibly echo'ed commands
553           (unless wait-for
554             (nntp-accept-response)
555             (with-current-buffer buffer
556               (goto-char pos)
557               (if (looking-at (regexp-quote command))
558                   (delete-region pos (progn (forward-line 1)
559                                             (point-at-bol)))))))
560       (nnheader-report 'nntp "Couldn't open connection to %s."
561                        nntp-address))))
562
563 (defun nntp-send-command-and-decode (wait-for &rest strings)
564   "Send STRINGS to server and wait until WAIT-FOR returns."
565   (when (and (not nnheader-callback-function)
566              (not nntp-inhibit-output))
567     (nntp-erase-buffer nntp-server-buffer))
568   (let* ((command (mapconcat 'identity strings " "))
569          (process (nntp-find-connection nntp-server-buffer))
570          (buffer (and process (process-buffer process)))
571          (pos (and buffer (with-current-buffer buffer (point)))))
572     (if process
573         (prog1
574             (nntp-retrieve-data command
575                                 nntp-address nntp-port-number
576                                 nntp-server-buffer
577                                 wait-for nnheader-callback-function t)
578           ;; If nothing to wait for, still remove possibly echo'ed commands
579           (unless wait-for
580             (nntp-accept-response)
581             (with-current-buffer buffer
582               (goto-char pos)
583               (if (looking-at (regexp-quote command))
584                   (delete-region pos (progn (forward-line 1) (point-at-bol))))
585               )))
586       (nnheader-report 'nntp "Couldn't open connection to %s."
587                        nntp-address))))
588
589
590 (defun nntp-send-buffer (wait-for)
591   "Send the current buffer to server and wait until WAIT-FOR returns."
592   (when (and (not nnheader-callback-function)
593              (not nntp-inhibit-output))
594     (nntp-erase-buffer
595      (nntp-find-connection-buffer nntp-server-buffer)))
596   (nntp-encode-text)
597   ;; Make sure we did not forget to encode some of the content.
598   (assert (save-excursion (goto-char (point-min))
599                           (not (re-search-forward "[^\000-\377]" nil t))))
600   (mm-disable-multibyte)
601   (process-send-region (nntp-find-connection nntp-server-buffer)
602                        (point-min) (point-max))
603   (nntp-retrieve-data
604    nil nntp-address nntp-port-number nntp-server-buffer
605    wait-for nnheader-callback-function))
606
607 \f
608
609 ;;; Interface functions.
610
611 (nnoo-define-basics nntp)
612
613 (defsubst nntp-next-result-arrived-p ()
614   (cond
615    ;; A result that starts with a 2xx code is terminated by
616    ;; a line with only a "." on it.
617    ((eq (char-after) ?2)
618     (if (re-search-forward "\n\\.\r?\n" nil t)
619         (progn
620           ;; Some broken news servers add another dot at the end.
621           ;; Protect against inflooping there.
622           (while (looking-at "^\\.\r?\n")
623             (forward-line 1))
624           t)
625       nil))
626    ;; A result that starts with a 3xx or 4xx code is terminated
627    ;; by a newline.
628    ((looking-at "[34]")
629     (if (search-forward "\n" nil t)
630         t
631       nil))
632    ;; No result here.
633    (t
634     nil)))
635
636 (eval-when-compile
637   (defvar nntp-with-open-group-internal nil)
638   (defvar nntp-report-n nil))
639
640 (defun nntp-with-open-group-function (-group -server -connectionless -bodyfun)
641   "Protect against servers that don't like clients that keep idle connections opens.
642 The problem being that these servers may either close a connection or
643 simply ignore any further requests on a connection.  Closed
644 connections are not detected until `accept-process-output' has updated
645 the `process-status'.  Dropped connections are not detected until the
646 connection timeouts (which may be several minutes) or
647 `nntp-connection-timeout' has expired.  When these occur
648 `nntp-with-open-group', opens a new connection then re-issues the NNTP
649 command whose response triggered the error."
650   (letf ((nntp-report-n (symbol-function 'nntp-report))
651          ((symbol-function 'nntp-report) (symbol-function 'nntp-report-1))
652          (nntp-with-open-group-internal nil))
653     (while (catch 'nntp-with-open-group-error
654              ;; Open the connection to the server
655              ;; NOTE: Existing connections are NOT tested.
656              (nntp-possibly-change-group -group -server -connectionless)
657
658              (let ((-timer
659                     (and nntp-connection-timeout
660                          (run-at-time
661                           nntp-connection-timeout nil
662                           (lambda ()
663                             (let* ((-process (nntp-find-connection
664                                              nntp-server-buffer))
665                                    (-buffer  (and -process
666                                                   (process-buffer -process))))
667                               ;; When I an able to identify the
668                               ;; connection to the server AND I've
669                               ;; received NO response for
670                               ;; nntp-connection-timeout seconds.
671                               (when (and -buffer (eq 0 (buffer-size -buffer)))
672                                 ;; Close the connection.  Take no
673                                 ;; other action as the accept input
674                                 ;; code will handle the closed
675                                 ;; connection.
676                                 (nntp-kill-buffer -buffer))))))))
677                (unwind-protect
678                    (setq nntp-with-open-group-internal
679                          (condition-case nil
680                              (funcall -bodyfun)
681                            (quit
682                             (unless debug-on-quit
683                               (nntp-close-server))
684                             (signal 'quit nil))))
685                  (when -timer
686                    (nnheader-cancel-timer -timer)))
687                nil))
688       (setf (symbol-function 'nntp-report) nntp-report-n))
689     nntp-with-open-group-internal))
690
691 (defmacro nntp-with-open-group (group server &optional connectionless &rest forms)
692   "Protect against servers that don't like clients that keep idle connections opens.
693 The problem being that these servers may either close a connection or
694 simply ignore any further requests on a connection.  Closed
695 connections are not detected until `accept-process-output' has updated
696 the `process-status'.  Dropped connections are not detected until the
697 connection timeouts (which may be several minutes) or
698 `nntp-connection-timeout' has expired.  When these occur
699 `nntp-with-open-group', opens a new connection then re-issues the NNTP
700 command whose response triggered the error."
701   (declare (indent 2) (debug (form form [&optional symbolp] def-body)))
702   (when (and (listp connectionless)
703              (not (eq connectionless nil)))
704     (setq forms (cons connectionless forms)
705           connectionless nil))
706   `(nntp-with-open-group-function ,group ,server ,connectionless (lambda () ,@forms)))
707
708 (deffoo nntp-retrieve-headers (articles &optional group server fetch-old)
709   "Retrieve the headers of ARTICLES."
710   (nntp-with-open-group
711    group server
712    (with-current-buffer (nntp-find-connection-buffer nntp-server-buffer)
713      (erase-buffer)
714      (if (and (not gnus-nov-is-evil)
715               (not nntp-nov-is-evil)
716               (nntp-retrieve-headers-with-xover articles fetch-old))
717          ;; We successfully retrieved the headers via XOVER.
718          'nov
719        ;; XOVER didn't work, so we do it the hard, slow and inefficient
720        ;; way.
721        (let ((number (length articles))
722              (articles articles)
723              (count 0)
724              (received 0)
725              (last-point (point-min))
726              (buf (nntp-find-connection-buffer nntp-server-buffer))
727              (nntp-inhibit-erase t)
728              article)
729          ;; Send HEAD commands.
730          (while (setq article (pop articles))
731            (nntp-send-command
732             nil
733             "HEAD" (if (numberp article)
734                        (int-to-string article)
735                      ;; `articles' is either a list of article numbers
736                      ;; or a list of article IDs.
737                      article))
738            (incf count)
739            ;; Every 400 requests we have to read the stream in
740            ;; order to avoid deadlocks.
741            (when (or (null articles)    ;All requests have been sent.
742                      (zerop (% count nntp-maximum-request)))
743              (nntp-accept-response)
744              (while (progn
745                       (set-buffer buf)
746                       (goto-char last-point)
747                       ;; Count replies.
748                       (while (nntp-next-result-arrived-p)
749                         (setq last-point (point))
750                         (incf received))
751                       (< received count))
752                ;; If number of headers is greater than 100, give
753                ;;  informative messages.
754                (and (numberp nntp-large-newsgroup)
755                     (> number nntp-large-newsgroup)
756                     (zerop (% received 20))
757                     (nnheader-message 6 "NNTP: Receiving headers... %d%%"
758                                       (/ (* received 100) number)))
759                (nntp-accept-response))))
760          (and (numberp nntp-large-newsgroup)
761               (> number nntp-large-newsgroup)
762               (nnheader-message 6 "NNTP: Receiving headers...done"))
763
764          ;; Now all of replies are received.  Fold continuation lines.
765          (nnheader-fold-continuation-lines)
766          ;; Remove all "\r"'s.
767          (nnheader-strip-cr)
768          (nntp-copy-to-buffer nntp-server-buffer (point-min) (point-max))
769          'headers)))))
770
771 (deffoo nntp-retrieve-group-data-early (server infos)
772   "Retrieve group info on INFOS."
773   (nntp-with-open-group nil server
774     (let ((buffer (nntp-find-connection-buffer nntp-server-buffer)))
775       (when (and buffer
776                  (with-current-buffer buffer
777                    (not nntp-retrieval-in-progress)))
778         ;; The first time this is run, this variable is `try'.  So we
779         ;; try.
780         (when (eq nntp-server-list-active-group 'try)
781           (nntp-try-list-active
782            (gnus-group-real-name (gnus-info-group (car infos)))))
783         (with-current-buffer buffer
784           (erase-buffer)
785           ;; Mark this buffer as "in use" in case we try to issue two
786           ;; retrievals from the same server.  This shouldn't happen,
787           ;; so this is mostly a sanity check.
788           (setq nntp-retrieval-in-progress t)
789           (let ((nntp-inhibit-erase t)
790                 (command (if nntp-server-list-active-group
791                              "LIST ACTIVE" "GROUP")))
792             (dolist (info infos)
793               (nntp-send-command
794                nil command (gnus-group-real-name (gnus-info-group info)))))
795           (length infos))))))
796
797 (deffoo nntp-finish-retrieve-group-infos (server infos count)
798   (nntp-with-open-group nil server
799     (let ((buf (nntp-find-connection-buffer nntp-server-buffer))
800           (method (gnus-find-method-for-group
801                    (gnus-info-group (car infos))
802                    (car infos)))
803           (received 0)
804           (last-point 1))
805       (with-current-buffer buf
806         (setq nntp-retrieval-in-progress nil))
807       (when (and buf
808                  count)
809         (with-current-buffer buf
810           (while (and (gnus-buffer-live-p buf)
811                       (progn
812                         (goto-char last-point)
813                         ;; Count replies.
814                         (while (re-search-forward
815                                 (if nntp-server-list-active-group
816                                     "^[.]"
817                                   "^[0-9]")
818                                 nil t)
819                           (incf received))
820                         (setq last-point (point))
821                         (< received count)))
822             (nntp-accept-response))
823           ;; We now have all the entries.  Remove CRs.
824           (nnheader-strip-cr)
825           (if (not nntp-server-list-active-group)
826               (progn
827                 (nntp-copy-to-buffer nntp-server-buffer
828                                      (point-min) (point-max))
829                 (gnus-groups-to-gnus-format method gnus-active-hashtb t))
830             ;; We have read active entries, so we just delete the
831             ;; superfluous gunk.
832             (goto-char (point-min))
833             (while (re-search-forward "^[.2-5]" nil t)
834               (delete-region (match-beginning 0)
835                              (progn (forward-line 1) (point))))
836             (nntp-copy-to-buffer nntp-server-buffer (point-min) (point-max))
837             (with-current-buffer nntp-server-buffer
838               (gnus-active-to-gnus-format
839                ;; Kludge to use the extended method name if you have
840                ;; an extended one.
841                (if (consp (gnus-info-method (car infos)))
842                    (gnus-info-method (car infos))
843                  method)
844                gnus-active-hashtb nil t))))))))
845
846 (deffoo nntp-retrieve-groups (groups &optional server)
847   "Retrieve group info on GROUPS."
848   (nntp-with-open-group
849    nil server
850    (when (and (nntp-find-connection-buffer nntp-server-buffer)
851               (with-current-buffer
852                   (nntp-find-connection-buffer nntp-server-buffer)
853                 (if (not nntp-retrieval-in-progress)
854                     t
855                   (message "Warning: Refusing to do retrieval from %s because a retrieval is already happening"
856                            server)
857                   nil)))
858      (catch 'done
859        (save-excursion
860          ;; Erase nntp-server-buffer before nntp-inhibit-erase.
861          (nntp-erase-buffer nntp-server-buffer)
862          (set-buffer (nntp-find-connection-buffer nntp-server-buffer))
863          ;; The first time this is run, this variable is `try'.  So we
864          ;; try.
865          (when (eq nntp-server-list-active-group 'try)
866            (nntp-try-list-active (car groups)))
867          (erase-buffer)
868          (let ((count 0)
869                (groups groups)
870                (received 0)
871                (last-point (point-min))
872                (nntp-inhibit-erase t)
873                (buf (nntp-find-connection-buffer nntp-server-buffer))
874                (command (if nntp-server-list-active-group
875                             "LIST ACTIVE" "GROUP")))
876            (while groups
877              ;; Timeout may have killed the buffer.
878              (unless (gnus-buffer-live-p buf)
879                (nnheader-report 'nntp "Connection to %s is closed." server)
880                (throw 'done nil))
881              ;; Send the command to the server.
882              (nntp-send-command nil command (pop groups))
883              (incf count)
884              ;; Every 400 requests we have to read the stream in
885              ;; order to avoid deadlocks.
886              (when (or (null groups)    ;All requests have been sent.
887                        (zerop (% count nntp-maximum-request)))
888                (nntp-accept-response)
889                (while (and (gnus-buffer-live-p buf)
890                            (progn
891                              ;; Search `blue moon' in this file for the
892                              ;; reason why set-buffer here.
893                              (set-buffer buf)
894                              (goto-char last-point)
895                              ;; Count replies.
896                              (while (re-search-forward "^[0-9]" nil t)
897                                (incf received))
898                              (setq last-point (point))
899                              (< received count)))
900                  (nntp-accept-response))))
901
902            ;; Wait for the reply from the final command.
903            (unless (gnus-buffer-live-p buf)
904              (nnheader-report 'nntp "Connection to %s is closed." server)
905              (throw 'done nil))
906            (set-buffer buf)
907            (goto-char (point-max))
908            (re-search-backward "^[0-9]" nil t)
909            (when (looking-at "^[23]")
910              (while (and (gnus-buffer-live-p buf)
911                          (progn
912                            (set-buffer buf)
913                            (goto-char (point-max))
914                            (if (not nntp-server-list-active-group)
915                                (not (re-search-backward "\r?\n"
916                                                         (- (point) 3) t))
917                              (not (re-search-backward "^\\.\r?\n"
918                                                       (- (point) 4) t)))))
919                (nntp-accept-response)))
920
921            ;; Now all replies are received.  We remove CRs.
922            (unless (gnus-buffer-live-p buf)
923              (nnheader-report 'nntp "Connection to %s is closed." server)
924              (throw 'done nil))
925            (set-buffer buf)
926            (goto-char (point-min))
927            (while (search-forward "\r" nil t)
928              (replace-match "" t t))
929
930            (if (not nntp-server-list-active-group)
931                (progn
932                  (nntp-copy-to-buffer nntp-server-buffer
933                                       (point-min) (point-max))
934                  'group)
935              ;; We have read active entries, so we just delete the
936              ;; superfluous gunk.
937              (goto-char (point-min))
938              (while (re-search-forward "^[.2-5]" nil t)
939                (delete-region (match-beginning 0)
940                               (progn (forward-line 1) (point))))
941              (nntp-copy-to-buffer nntp-server-buffer (point-min) (point-max))
942              'active)))))))
943
944 (deffoo nntp-retrieve-articles (articles &optional group server)
945   (nntp-with-open-group
946     group server
947    (save-excursion
948      (let ((number (length articles))
949            (articles articles)
950            (count 0)
951            (received 0)
952            (last-point (point-min))
953            (buf (nntp-find-connection-buffer nntp-server-buffer))
954            (nntp-inhibit-erase t)
955            (map (apply 'vector articles))
956            (point 1)
957            article)
958        (set-buffer buf)
959        (erase-buffer)
960        ;; Send ARTICLE command.
961        (while (setq article (pop articles))
962          (nntp-send-command
963           nil
964           "ARTICLE" (if (numberp article)
965                         (int-to-string article)
966                       ;; `articles' is either a list of article numbers
967                       ;; or a list of article IDs.
968                       article))
969          (incf count)
970          ;; Every 400 requests we have to read the stream in
971          ;; order to avoid deadlocks.
972          (when (or (null articles)      ;All requests have been sent.
973                    (zerop (% count nntp-maximum-request)))
974            (nntp-accept-response)
975            (while (progn
976                     (set-buffer buf)
977                     (goto-char last-point)
978                     ;; Count replies.
979                     (while (nntp-next-result-arrived-p)
980                       (aset map received (cons (aref map received) (point)))
981                       (setq last-point (point))
982                       (incf received))
983                     (< received count))
984              ;; If number of headers is greater than 100, give
985              ;;  informative messages.
986              (and (numberp nntp-large-newsgroup)
987                   (> number nntp-large-newsgroup)
988                   (zerop (% received 20))
989                   (nnheader-message 6 "NNTP: Receiving articles... %d%%"
990                                     (/ (* received 100) number)))
991              (nntp-accept-response))))
992        (and (numberp nntp-large-newsgroup)
993             (> number nntp-large-newsgroup)
994             (nnheader-message 6 "NNTP: Receiving articles...done"))
995
996        ;; Now we have all the responses.  We go through the results,
997        ;; wash it and copy it over to the server buffer.
998        (set-buffer nntp-server-buffer)
999        (erase-buffer)
1000        (setq last-point (point-min))
1001        (mapcar
1002         (lambda (entry)
1003           (narrow-to-region
1004            (setq point (goto-char (point-max)))
1005            (progn
1006              (nnheader-insert-buffer-substring buf last-point (cdr entry))
1007              (point-max)))
1008           (setq last-point (cdr entry))
1009           (nntp-decode-text)
1010           (widen)
1011           (cons (car entry) point))
1012         map)))))
1013
1014 (defun nntp-try-list-active (group)
1015   (nntp-list-active-group group)
1016   (with-current-buffer nntp-server-buffer
1017     (goto-char (point-min))
1018     (cond ((or (eobp)
1019                (looking-at "5[0-9]+"))
1020            (setq nntp-server-list-active-group nil))
1021           (t
1022            (setq nntp-server-list-active-group t)))))
1023
1024 (deffoo nntp-list-active-group (group &optional server)
1025   "Return the active info on GROUP (which can be a regexp)."
1026   (nntp-with-open-group
1027    nil server
1028    (nntp-send-command "^\\.*\r?\n" "LIST ACTIVE" group)))
1029
1030 (deffoo nntp-request-group-articles (group &optional server)
1031   "Return the list of existing articles in GROUP."
1032   (nntp-with-open-group
1033    nil server
1034    (nntp-send-command "^\\.*\r?\n" "LISTGROUP" group)))
1035
1036 (deffoo nntp-request-article (article &optional group server buffer command)
1037   (nntp-with-open-group
1038       group server
1039     (when (nntp-send-command-and-decode
1040            "\r?\n\\.\r?\n" "ARTICLE"
1041            (if (numberp article) (int-to-string article) article))
1042       (when (and buffer
1043                  (not (equal buffer nntp-server-buffer)))
1044         (with-current-buffer nntp-server-buffer
1045           (copy-to-buffer buffer (point-min) (point-max))))
1046       (nntp-find-group-and-number group))))
1047
1048 (deffoo nntp-request-head (article &optional group server)
1049   (nntp-with-open-group
1050    group server
1051    (when (nntp-send-command
1052           "\r?\n\\.\r?\n" "HEAD"
1053           (if (numberp article) (int-to-string article) article))
1054      (prog1
1055          (nntp-find-group-and-number group)
1056        (nntp-decode-text)))))
1057
1058 (deffoo nntp-request-body (article &optional group server)
1059   (nntp-with-open-group
1060    group server
1061    (nntp-send-command-and-decode
1062     "\r?\n\\.\r?\n" "BODY"
1063     (if (numberp article) (int-to-string article) article))))
1064
1065 (deffoo nntp-request-group (group &optional server dont-check info)
1066   (nntp-with-open-group
1067     nil server
1068     (when (nntp-send-command "^[245].*\n" "GROUP" group)
1069       (let ((entry (nntp-find-connection-entry nntp-server-buffer)))
1070         (setcar (cddr entry) group)))))
1071
1072 (deffoo nntp-close-group (group &optional server)
1073   t)
1074
1075 (deffoo nntp-server-opened (&optional server)
1076   "Say whether a connection to SERVER has been opened."
1077   (and (nnoo-current-server-p 'nntp server)
1078        nntp-server-buffer
1079        (gnus-buffer-live-p nntp-server-buffer)
1080        (nntp-find-connection nntp-server-buffer)))
1081
1082 (deffoo nntp-open-server (server &optional defs connectionless)
1083   (nnheader-init-server-buffer)
1084   (if (nntp-server-opened server)
1085       t
1086     (when (or (stringp (car defs))
1087               (numberp (car defs)))
1088       (setq defs (cons (list 'nntp-port-number (car defs)) (cdr defs))))
1089     (unless (assq 'nntp-address defs)
1090       (setq defs (append defs (list (list 'nntp-address server)))))
1091     (nnoo-change-server 'nntp server defs)
1092     (if connectionless
1093         t
1094       (or (nntp-find-connection nntp-server-buffer)
1095           (nntp-open-connection nntp-server-buffer)))))
1096
1097 (deffoo nntp-close-server (&optional server)
1098   (nntp-possibly-change-group nil server t)
1099   (let ((process (nntp-find-connection nntp-server-buffer)))
1100     (while process
1101       (when (memq (process-status process) '(open run))
1102         (ignore-errors
1103           (nntp-send-string process "QUIT")
1104           (unless (eq nntp-open-connection-function 'nntp-open-network-stream)
1105             ;; Ok, this is evil, but when using telnet and stuff
1106             ;; as the connection method, it's important that the
1107             ;; QUIT command actually is sent out before we kill
1108             ;; the process.
1109             (sleep-for 1))))
1110       (nntp-kill-buffer (process-buffer process))
1111       (setq process (car (pop nntp-connection-alist))))
1112     (nnoo-close-server 'nntp)))
1113
1114 (deffoo nntp-request-close ()
1115   (let (process)
1116     (while (setq process (pop nntp-connection-list))
1117       (when (memq (process-status process) '(open run))
1118         (ignore-errors
1119           (nntp-send-string process "QUIT")
1120           (unless (eq nntp-open-connection-function 'nntp-open-network-stream)
1121             ;; Ok, this is evil, but when using telnet and stuff
1122             ;; as the connection method, it's important that the
1123             ;; QUIT command actually is sent out before we kill
1124             ;; the process.
1125             (sleep-for 1))))
1126       (nntp-kill-buffer (process-buffer process)))))
1127
1128 (deffoo nntp-request-list (&optional server)
1129   (nntp-with-open-group
1130    nil server
1131    (nntp-send-command-and-decode "\r?\n\\.\r?\n" "LIST")))
1132
1133 (deffoo nntp-request-list-newsgroups (&optional server)
1134   (nntp-with-open-group
1135    nil server
1136    (nntp-send-command "\r?\n\\.\r?\n" "LIST NEWSGROUPS")))
1137
1138 (deffoo nntp-request-newgroups (date &optional server)
1139   (nntp-with-open-group
1140    nil server
1141    (with-current-buffer nntp-server-buffer
1142      (let* ((time (date-to-time date))
1143             (ls (- (cadr time) (nth 8 (decode-time time)))))
1144        (cond ((< ls 0)
1145               (setcar time (1- (car time)))
1146               (setcar (cdr time) (+ ls 65536)))
1147              ((>= ls 65536)
1148               (setcar time (1+ (car time)))
1149               (setcar (cdr time) (- ls 65536)))
1150              (t
1151               (setcar (cdr time) ls)))
1152        (prog1
1153            (nntp-send-command
1154             "^\\.\r?\n" "NEWGROUPS"
1155             (format-time-string "%y%m%d %H%M%S" time)
1156             "GMT")
1157          (nntp-decode-text))))))
1158
1159 (deffoo nntp-request-post (&optional server)
1160   (nntp-with-open-group
1161    nil server
1162    (when (nntp-send-command "^[23].*\r?\n" "POST")
1163      (let ((response (with-current-buffer nntp-server-buffer
1164                        nntp-process-response))
1165            server-id)
1166        (when (and response
1167                   (string-match "^[23].*\\(<[^\t\n @<>]+@[^\t\n @<>]+>\\)"
1168                                 response))
1169          (setq server-id (match-string 1 response))
1170          (narrow-to-region (goto-char (point-min))
1171                            (if (search-forward "\n\n" nil t)
1172                                (1- (point))
1173                              (point-max)))
1174          (unless (mail-fetch-field "Message-ID")
1175            (goto-char (point-min))
1176            (insert "Message-ID: " server-id "\n"))
1177          (widen))
1178        (run-hooks 'nntp-prepare-post-hook)
1179        (nntp-send-buffer "^[23].*\n")))))
1180
1181 (deffoo nntp-request-type (group article)
1182   'news)
1183
1184 (deffoo nntp-asynchronous-p ()
1185   t)
1186
1187 (deffoo nntp-request-set-mark (group actions &optional server)
1188   (when (and (not nntp-marks-is-evil)
1189              nntp-marks-file-name)
1190     (nntp-possibly-create-directory group server)
1191     (nntp-open-marks group server)
1192     (setq nntp-marks (nnheader-update-marks-actions nntp-marks actions))
1193     (nntp-save-marks group server))
1194   nil)
1195
1196 (deffoo nntp-request-marks (group info &optional server)
1197   (when (and (not nntp-marks-is-evil)
1198              nntp-marks-file-name)
1199     (nntp-possibly-create-directory group server)
1200     (when (nntp-marks-changed-p group server)
1201       (nnheader-message 8 "Updating marks for %s..." group)
1202       (nntp-open-marks group server)
1203       ;; Update info using `nntp-marks'.
1204       (mapc (lambda (pred)
1205               (unless (memq (cdr pred) gnus-article-unpropagated-mark-lists)
1206                 (gnus-info-set-marks
1207                  info
1208                  (gnus-update-alist-soft
1209                   (cdr pred)
1210                   (cdr (assq (cdr pred) nntp-marks))
1211                   (gnus-info-marks info))
1212                  t)))
1213             gnus-article-mark-lists)
1214       (let ((seen (cdr (assq 'read nntp-marks))))
1215         (gnus-info-set-read info
1216                             (if (and (integerp (car seen))
1217                                      (null (cdr seen)))
1218                                 (list (cons (car seen) (car seen)))
1219                               seen)))
1220       (nnheader-message 8 "Updating marks for %s...done" group)))
1221   nil)
1222
1223
1224
1225 ;;; Hooky functions.
1226
1227 (defun nntp-send-mode-reader ()
1228   "Send the MODE READER command to the nntp server.
1229 This function is supposed to be called from `nntp-server-opened-hook'.
1230 It will make innd servers spawn an nnrpd process to allow actual article
1231 reading."
1232   (nntp-send-command "^.*\n" "MODE READER"))
1233
1234 (declare-function netrc-parse "netrc" (&optional file))
1235 (declare-function netrc-machine "netrc"
1236                   (list machine &optional port defaultport))
1237 (declare-function netrc-get "netrc" (alist type))
1238
1239 (defun nntp-send-authinfo (&optional send-if-force)
1240   "Send the AUTHINFO to the nntp server.
1241 It will look in the \"~/.authinfo\" file for matching entries.  If
1242 nothing suitable is found there, it will prompt for a user name
1243 and a password.
1244
1245 If SEND-IF-FORCE, only send authinfo to the server if the
1246 .authinfo file has the FORCE token."
1247   (require 'netrc)
1248   (let* ((list (netrc-parse nntp-authinfo-file))
1249          (alist (netrc-machine list nntp-address "nntp"))
1250          (auth-info
1251           (nth 0 (auth-source-search :max 1
1252                                      :host (list nntp-address
1253                                                  (nnoo-current-server 'nntp))
1254                                      :port '("119" "nntp"))))
1255          (auth-user (plist-get auth-info :user))
1256          (auth-force (plist-get auth-info :force))
1257          (auth-passwd (plist-get auth-info :secret))
1258          (auth-passwd (if (functionp auth-passwd)
1259                           (funcall auth-passwd)
1260                         auth-passwd))
1261          (force (or (netrc-get alist "force")
1262                     nntp-authinfo-force
1263                     auth-force))
1264          (user (or
1265                 ;; this is preferred to netrc-*
1266                 auth-user
1267                 (netrc-get alist "login")
1268                 nntp-authinfo-user))
1269          (passwd (or
1270                   ;; this is preferred to netrc-*
1271                   auth-passwd
1272                   (netrc-get alist "password"))))
1273     (when (or (not send-if-force)
1274               force)
1275       (unless user
1276         (setq user (read-string (format "NNTP (%s) user name: " nntp-address))
1277               nntp-authinfo-user user))
1278       (unless (member user '(nil ""))
1279         (nntp-send-command "^3.*\r?\n" "AUTHINFO USER" user)
1280         (when t                         ;???Should check if AUTHINFO succeeded
1281           (nntp-send-command
1282            "^2.*\r?\n" "AUTHINFO PASS"
1283            (or passwd
1284                nntp-authinfo-password
1285                (setq nntp-authinfo-password
1286                      (read-passwd (format "NNTP (%s@%s) password: "
1287                                           user nntp-address))))))))))
1288
1289 (defun nntp-send-nosy-authinfo ()
1290   "Send the AUTHINFO to the nntp server."
1291   (let ((user (read-string (format "NNTP (%s) user name: " nntp-address))))
1292     (unless (member user '(nil ""))
1293       (nntp-send-command "^3.*\r?\n" "AUTHINFO USER" user)
1294       (when t                           ;???Should check if AUTHINFO succeeded
1295         (nntp-send-command "^2.*\r?\n" "AUTHINFO PASS"
1296                            (read-passwd (format "NNTP (%s@%s) password: "
1297                                                 user nntp-address)))))))
1298
1299 (defun nntp-send-authinfo-from-file ()
1300   "Send the AUTHINFO to the nntp server.
1301
1302 The authinfo login name is taken from the user's login name and the
1303 password contained in '~/.nntp-authinfo'."
1304   (when (file-exists-p "~/.nntp-authinfo")
1305     (with-temp-buffer
1306       (insert-file-contents "~/.nntp-authinfo")
1307       (goto-char (point-min))
1308       (nntp-send-command "^3.*\r?\n" "AUTHINFO USER" (user-login-name))
1309       (nntp-send-command
1310        "^2.*\r?\n" "AUTHINFO PASS"
1311        (buffer-substring (point) (point-at-eol))))))
1312
1313 ;;; Internal functions.
1314
1315 (defun nntp-handle-authinfo (process)
1316   "Take care of an authinfo response from the server."
1317   (let ((last nntp-last-command))
1318     (funcall nntp-authinfo-function)
1319     ;; We have to re-send the function that was interrupted by
1320     ;; the authinfo request.
1321     (nntp-erase-buffer nntp-server-buffer)
1322     (nntp-send-string process last)))
1323
1324 (defun nntp-make-process-buffer (buffer)
1325   "Create a new, fresh buffer usable for nntp process connections."
1326   (with-current-buffer
1327       (generate-new-buffer
1328        (format " *server %s %s %s*"
1329                nntp-address nntp-port-number
1330                (gnus-buffer-exists-p buffer)))
1331     (mm-disable-multibyte)
1332     (set (make-local-variable 'after-change-functions) nil)
1333     (set (make-local-variable 'nntp-process-wait-for) nil)
1334     (set (make-local-variable 'nntp-process-callback) nil)
1335     (set (make-local-variable 'nntp-process-to-buffer) nil)
1336     (set (make-local-variable 'nntp-process-start-point) nil)
1337     (set (make-local-variable 'nntp-process-decode) nil)
1338     (set (make-local-variable 'nntp-retrieval-in-progress) nil)
1339     (current-buffer)))
1340
1341 (defun nntp-open-connection (buffer)
1342   "Open a connection to PORT on ADDRESS delivering output to BUFFER."
1343   (run-hooks 'nntp-prepare-server-hook)
1344   (let* ((pbuffer (nntp-make-process-buffer buffer))
1345          (timer
1346           (and nntp-connection-timeout
1347                (run-at-time
1348                 nntp-connection-timeout nil
1349                 `(lambda ()
1350                    (nntp-kill-buffer ,pbuffer)))))
1351          (process
1352           (condition-case err
1353               (let ((coding-system-for-read nntp-coding-system-for-read)
1354                     (coding-system-for-write nntp-coding-system-for-write)
1355                     (map '((nntp-open-network-stream network)
1356                            (network-only plain) ; compat
1357                            (nntp-open-plain-stream plain)
1358                            (nntp-open-ssl-stream tls)
1359                            (nntp-open-tls-stream tls))))
1360                 (if (assoc nntp-open-connection-function map)
1361                     (open-protocol-stream
1362                      "nntpd" pbuffer nntp-address nntp-port-number
1363                      :type (cadr (assoc nntp-open-connection-function map))
1364                      :end-of-command "^\\([2345]\\|[.]\\).*\n"
1365                      :capability-command "CAPABILITIES\r\n"
1366                      :success "^3"
1367                      :starttls-function
1368                      (lambda (capabilities)
1369                        (if (not (string-match "STARTTLS" capabilities))
1370                            nil
1371                          "STARTTLS\r\n")))
1372                   (funcall nntp-open-connection-function pbuffer)))
1373             (error
1374              (nnheader-report 'nntp ">>> %s" err))
1375             (quit
1376              (message "Quit opening connection to %s" nntp-address)
1377              (nntp-kill-buffer pbuffer)
1378              (signal 'quit nil)
1379              nil))))
1380     (when timer
1381       (nnheader-cancel-timer timer))
1382     (when (and process
1383                (not (memq (process-status process) '(open run))))
1384       (setq process nil))
1385     (unless process
1386       (nntp-kill-buffer pbuffer))
1387     (when (and (buffer-name pbuffer)
1388                process)
1389       (when (and (fboundp 'set-network-process-option) ;; Unavailable in XEmacs.
1390                  (fboundp 'process-type) ;; Emacs 22 doesn't provide it.
1391                  (eq (process-type process) 'network))
1392         ;; Use TCP-keepalive so that connections that pass through a NAT router
1393         ;; don't hang when left idle.
1394         (set-network-process-option process :keepalive t))
1395       (gnus-set-process-query-on-exit-flag process nil)
1396       (if (and (nntp-wait-for process "^2.*\n" buffer nil t)
1397                (memq (process-status process) '(open run)))
1398           (prog1
1399               (caar (push (list process buffer nil) nntp-connection-alist))
1400             (push process nntp-connection-list)
1401             (with-current-buffer pbuffer
1402               (nntp-read-server-type)
1403               (erase-buffer)
1404               (set-buffer nntp-server-buffer)
1405               (let ((nnheader-callback-function nil))
1406                 (run-hooks 'nntp-server-opened-hook)
1407                 (nntp-send-authinfo t))))
1408         (nntp-kill-buffer (process-buffer process))
1409         nil))))
1410
1411 (defun nntp-read-server-type ()
1412   "Find out what the name of the server we have connected to is."
1413   ;; Wait for the status string to arrive.
1414   (setq nntp-server-type (buffer-string))
1415   (let ((case-fold-search t))
1416     ;; Run server-specific commands.
1417     (dolist (entry nntp-server-action-alist)
1418       (when (string-match (car entry) nntp-server-type)
1419         (if (and (listp (cadr entry))
1420                  (not (eq 'lambda (caadr entry))))
1421             (eval (cadr entry))
1422           (funcall (cadr entry)))))))
1423
1424 (defun nntp-async-wait (process wait-for buffer decode callback)
1425   (with-current-buffer (process-buffer process)
1426     (unless nntp-inside-change-function
1427       (erase-buffer))
1428     (setq nntp-process-wait-for wait-for
1429           nntp-process-to-buffer buffer
1430           nntp-process-decode decode
1431           nntp-process-callback callback
1432           nntp-process-start-point (point-max))
1433     (setq after-change-functions '(nntp-after-change-function))))
1434
1435 (defun nntp-async-timer-handler ()
1436   (mapcar
1437    (lambda (proc)
1438      (if (memq (process-status proc) '(open run))
1439          (nntp-async-trigger proc)
1440        (nntp-async-stop proc)))
1441    nntp-async-process-list))
1442
1443 (defun nntp-async-stop (proc)
1444   (setq nntp-async-process-list (delq proc nntp-async-process-list))
1445   (when (and nntp-async-timer (not nntp-async-process-list))
1446     (nnheader-cancel-timer nntp-async-timer)
1447     (setq nntp-async-timer nil)))
1448
1449 (defun nntp-after-change-function (beg end len)
1450   (unwind-protect
1451       ;; we only care about insertions at eob
1452       (when (and (eq 0 len) (eq (point-max) end))
1453         (save-match-data
1454           (let ((proc (get-buffer-process (current-buffer))))
1455             (when proc
1456               (nntp-async-trigger proc)))))
1457     ;; any throw from after-change-functions will leave it
1458     ;; set to nil.  so we reset it here, if necessary.
1459     (when quit-flag
1460       (setq after-change-functions '(nntp-after-change-function)))))
1461
1462 (defun nntp-async-trigger (process)
1463   (with-current-buffer (process-buffer process)
1464     (when nntp-process-callback
1465       ;; do we have an error message?
1466       (goto-char nntp-process-start-point)
1467       (if (memq (following-char) '(?4 ?5))
1468           ;; wants credentials?
1469           (if (looking-at "480")
1470               (nntp-handle-authinfo process)
1471             ;; report error message.
1472             (nntp-snarf-error-message)
1473             (nntp-do-callback nil))
1474
1475         ;; got what we expect?
1476         (goto-char (point-max))
1477         (when (re-search-backward
1478                nntp-process-wait-for nntp-process-start-point t)
1479           (let ((response (match-string 0)))
1480             (with-current-buffer nntp-server-buffer
1481               (setq nntp-process-response response)))
1482           (nntp-async-stop process)
1483           ;; convert it.
1484           (when (gnus-buffer-exists-p nntp-process-to-buffer)
1485             (let ((buf (current-buffer))
1486                   (start nntp-process-start-point)
1487                   (decode nntp-process-decode))
1488               (with-current-buffer nntp-process-to-buffer
1489                 (goto-char (point-max))
1490                 (save-restriction
1491                   (narrow-to-region (point) (point))
1492                   (nnheader-insert-buffer-substring buf start)
1493                   (when decode
1494                     (nntp-decode-text))))))
1495           ;; report it.
1496           (goto-char (point-max))
1497           (nntp-do-callback
1498            (buffer-name (get-buffer nntp-process-to-buffer))))))))
1499
1500 (defun nntp-do-callback (arg)
1501   (let ((callback nntp-process-callback)
1502         (nntp-inside-change-function t))
1503     (setq nntp-process-callback nil)
1504     (funcall callback arg)))
1505
1506 (defun nntp-snarf-error-message ()
1507   "Save the error message in the current buffer."
1508   (let ((message (buffer-string)))
1509     (while (string-match "[\r\n]+" message)
1510       (setq message (replace-match " " t t message)))
1511     (nnheader-report 'nntp "%s" message)
1512     message))
1513
1514 (defun nntp-accept-process-output (process)
1515   "Wait for output from PROCESS and message some dots."
1516   (with-current-buffer (or (nntp-find-connection-buffer nntp-server-buffer)
1517                            nntp-server-buffer)
1518     (let ((len (/ (buffer-size) 1024))
1519           message-log-max)
1520       (unless (< len 10)
1521         (setq nntp-have-messaged t)
1522         (nnheader-message 7 "nntp read: %dk" len)))
1523     (prog1
1524         (nnheader-accept-process-output process)
1525       ;; accept-process-output may update status of process to indicate
1526       ;; that the server has closed the connection.  This MUST be
1527       ;; handled here as the buffer restored by the save-excursion may
1528       ;; be the process's former output buffer (i.e. now killed)
1529       (or (and process
1530                (memq (process-status process) '(open run)))
1531           (nntp-report "Server closed connection")))))
1532
1533 (defun nntp-accept-response ()
1534   "Wait for output from the process that outputs to BUFFER."
1535   (nntp-accept-process-output (nntp-find-connection nntp-server-buffer)))
1536
1537 (defun nntp-possibly-change-group (group server &optional connectionless)
1538   (let ((nnheader-callback-function nil))
1539     (when server
1540       (or (nntp-server-opened server)
1541           (nntp-open-server server nil connectionless)))
1542
1543     (unless connectionless
1544       (or (nntp-find-connection nntp-server-buffer)
1545           (nntp-open-connection nntp-server-buffer))))
1546
1547   (when group
1548     (let ((entry (nntp-find-connection-entry nntp-server-buffer)))
1549       (cond ((not entry)
1550              (nntp-report "Server closed connection"))
1551             ((not (equal group (caddr entry)))
1552              (with-current-buffer (process-buffer (car entry))
1553                (erase-buffer)
1554                (nntp-send-command "^[245].*\n" "GROUP" group)
1555                (setcar (cddr entry) group)
1556                (erase-buffer)
1557                (nntp-erase-buffer nntp-server-buffer)))))))
1558
1559 (defun nntp-decode-text (&optional cr-only)
1560   "Decode the text in the current buffer."
1561   (goto-char (point-min))
1562   (while (search-forward "\r" nil t)
1563     (delete-char -1))
1564   (unless cr-only
1565     ;; Remove trailing ".\n" end-of-transfer marker.
1566     (goto-char (point-max))
1567     (forward-line -1)
1568     (when (looking-at ".\n")
1569       (delete-char 2))
1570     ;; Delete status line.
1571     (goto-char (point-min))
1572     (while (looking-at "[1-5][0-9][0-9] .*\n")
1573       ;; For some unknown reason, there is more than one status line.
1574       (delete-region (point) (progn (forward-line 1) (point))))
1575     ;; Remove "." -> ".." encoding.
1576     (while (search-forward "\n.." nil t)
1577       (delete-char -1))))
1578
1579 (defun nntp-encode-text ()
1580   "Encode the text in the current buffer."
1581   (save-excursion
1582     ;; Replace "." at beginning of line with "..".
1583     (goto-char (point-min))
1584     (while (re-search-forward "^\\." nil t)
1585       (insert "."))
1586     (goto-char (point-max))
1587     ;; Insert newline at the end of the buffer.
1588     (unless (bolp)
1589       (insert "\n"))
1590     ;; Insert `.' at end of buffer (end of text mark).
1591     (goto-char (point-max))
1592     (insert ".\n")
1593     (goto-char (point-min))
1594     (while (not (eobp))
1595       (end-of-line)
1596       (delete-char 1)
1597       (insert nntp-end-of-line))))
1598
1599 (defun nntp-retrieve-headers-with-xover (articles &optional fetch-old)
1600   (set-buffer nntp-server-buffer)
1601   (erase-buffer)
1602   (cond
1603
1604    ;; This server does not talk NOV.
1605    ((not nntp-server-xover)
1606     nil)
1607
1608    ;; We don't care about gaps.
1609    ((or (not nntp-nov-gap)
1610         fetch-old)
1611     (nntp-send-xover-command
1612      (if fetch-old
1613          (if (numberp fetch-old)
1614              (max 1 (- (car articles) fetch-old))
1615            1)
1616        (car articles))
1617      (car (last articles)) 'wait)
1618
1619     (goto-char (point-min))
1620     (when (looking-at "[1-5][0-9][0-9] .*\n")
1621       (delete-region (point) (progn (forward-line 1) (point))))
1622     (while (search-forward "\r" nil t)
1623       (replace-match "" t t))
1624     (goto-char (point-max))
1625     (forward-line -1)
1626     (when (looking-at "\\.")
1627       (delete-region (point) (progn (forward-line 1) (point)))))
1628
1629    ;; We do it the hard way.  For each gap, an XOVER command is sent
1630    ;; to the server.  We do not wait for a reply from the server, we
1631    ;; just send them off as fast as we can.  That means that we have
1632    ;; to count the number of responses we get back to find out when we
1633    ;; have gotten all we asked for.
1634    ((numberp nntp-nov-gap)
1635     (let ((count 0)
1636           (received 0)
1637           last-point
1638           in-process-buffer-p
1639           (buf nntp-server-buffer)
1640           (process-buffer (nntp-find-connection-buffer nntp-server-buffer))
1641           first last status)
1642       ;; We have to check `nntp-server-xover'.  If it gets set to nil,
1643       ;; that means that the server does not understand XOVER, but we
1644       ;; won't know that until we try.
1645       (while (and nntp-server-xover articles)
1646         (setq first (car articles))
1647         ;; Search forward until we find a gap, or until we run out of
1648         ;; articles.
1649         (while (and (cdr articles)
1650                     (< (- (nth 1 articles) (car articles)) nntp-nov-gap))
1651           (setq articles (cdr articles)))
1652
1653         (setq in-process-buffer-p (stringp nntp-server-xover))
1654         (nntp-send-xover-command first (setq last (car articles)))
1655         (setq articles (cdr articles))
1656
1657         (when (and nntp-server-xover in-process-buffer-p)
1658           ;; Don't count tried request.
1659           (setq count (1+ count))
1660
1661           ;; Every 400 requests we have to read the stream in
1662           ;; order to avoid deadlocks.
1663           (when (or (null articles)     ;All requests have been sent.
1664                     (= 1 (% count nntp-maximum-request)))
1665
1666             (nntp-accept-response)
1667             ;; On some Emacs versions the preceding function has a
1668             ;; tendency to change the buffer.  Perhaps.  It's quite
1669             ;; difficult to reproduce, because it only seems to happen
1670             ;; once in a blue moon.
1671             (set-buffer process-buffer)
1672             (while (progn
1673                      (goto-char (or last-point (point-min)))
1674                      ;; Count replies.
1675                      (while (re-search-forward "^\\([0-9][0-9][0-9]\\) .*\n"
1676                                                nil t)
1677                        (incf received)
1678                        (setq status (match-string 1))
1679                        (if (string-match "^[45]" status)
1680                            (setq status 'error)
1681                          (setq status 'ok)))
1682                      (setq last-point (point))
1683                      (or (< received count)
1684                          (if (eq status 'error)
1685                              nil
1686                            ;; I haven't started reading the final response
1687                            (progn
1688                              (goto-char (point-max))
1689                              (forward-line -1)
1690                              (not (looking-at "^\\.\r?\n"))))))
1691               ;; I haven't read the end of the final response
1692               (nntp-accept-response)
1693               (set-buffer process-buffer))))
1694
1695         ;; Some nntp servers seem to have an extension to the XOVER
1696         ;; extension.  On these servers, requesting an article range
1697         ;; preceding the active range does not return an error as
1698         ;; specified in the RFC.  What we instead get is the NOV entry
1699         ;; for the first available article.  Obviously, a client can
1700         ;; use that entry to avoid making unnecessary requests.  The
1701         ;; only problem is for a client that assumes that the response
1702         ;; will always be within the requested range.  For such a
1703         ;; client, we can get N copies of the same entry (one for each
1704         ;; XOVER command sent to the server).
1705
1706         (when (<= count 1)
1707           (goto-char (point-min))
1708           (when (re-search-forward "^[0-9][0-9][0-9] .*\n\\([0-9]+\\)" nil t)
1709             (let ((low-limit (string-to-number
1710                               (buffer-substring (match-beginning 1)
1711                                                 (match-end 1)))))
1712               (while (and articles (<= (car articles) low-limit))
1713                 (setq articles (cdr articles))))))
1714         (set-buffer buf))
1715
1716       (when nntp-server-xover
1717         (when in-process-buffer-p
1718           (set-buffer buf)
1719           (goto-char (point-max))
1720           (nnheader-insert-buffer-substring process-buffer)
1721           (set-buffer process-buffer)
1722           (erase-buffer)
1723           (set-buffer buf))
1724
1725         ;; We remove any "." lines and status lines.
1726         (goto-char (point-min))
1727         (while (search-forward "\r" nil t)
1728           (delete-char -1))
1729         (goto-char (point-min))
1730         (delete-matching-lines "^\\.$\\|^[1-5][0-9][0-9] ")
1731         t))))
1732
1733   nntp-server-xover)
1734
1735 (defun nntp-send-xover-command (beg end &optional wait-for-reply)
1736   "Send the XOVER command to the server."
1737   (let ((range (format "%d-%d" beg end))
1738         (nntp-inhibit-erase t))
1739     (if (stringp nntp-server-xover)
1740         ;; If `nntp-server-xover' is a string, then we just send this
1741         ;; command.
1742         (if wait-for-reply
1743             (nntp-send-command-nodelete
1744              "\r?\n\\.\r?\n" nntp-server-xover range)
1745           ;; We do not wait for the reply.
1746           (nntp-send-command-nodelete nil nntp-server-xover range))
1747       (let ((commands nntp-xover-commands))
1748         ;; `nntp-xover-commands' is a list of possible XOVER commands.
1749         ;; We try them all until we get at positive response.
1750         (while (and commands (eq nntp-server-xover 'try))
1751           (nntp-send-command-nodelete "\r?\n\\.\r?\n" (car commands) range)
1752           (with-current-buffer nntp-server-buffer
1753             (goto-char (point-min))
1754             (and (looking-at "[23]")    ; No error message.
1755                  ;; We also have to look at the lines.  Some buggy
1756                  ;; servers give back simple lines with just the
1757                  ;; article number.  How... helpful.
1758                  (progn
1759                    (forward-line 1)
1760                    ;; More text after number, or a dot.
1761                    (looking-at "[0-9]+\t...\\|\\.\r?\n"))
1762                  (setq nntp-server-xover (car commands))))
1763           (setq commands (cdr commands)))
1764         ;; If none of the commands worked, we disable XOVER.
1765         (when (eq nntp-server-xover 'try)
1766           (nntp-erase-buffer nntp-server-buffer)
1767           (setq nntp-server-xover nil))
1768         nntp-server-xover))))
1769
1770 (defun nntp-find-group-and-number (&optional group)
1771   (save-excursion
1772     (save-restriction
1773       ;; FIXME: This is REALLY FISHY: set-buffer after save-restriction?!?
1774       (set-buffer nntp-server-buffer)
1775       (narrow-to-region (goto-char (point-min))
1776                         (or (search-forward "\n\n" nil t) (point-max)))
1777       (goto-char (point-min))
1778       ;; We first find the number by looking at the status line.
1779       (let ((number (and (looking-at "2[0-9][0-9] +\\([0-9]+\\) ")
1780                          (string-to-number
1781                           (buffer-substring (match-beginning 1)
1782                                             (match-end 1)))))
1783             newsgroups xref)
1784         (and number (zerop number) (setq number nil))
1785         (if number
1786             ;; Then we find the group name.
1787             (setq group
1788                   (cond
1789                    ;; If there is only one group in the Newsgroups
1790                    ;; header, then it seems quite likely that this
1791                    ;; article comes from that group, I'd say.
1792                    ((and (setq newsgroups
1793                                (mail-fetch-field "newsgroups"))
1794                          (not (string-match "," newsgroups)))
1795                     newsgroups)
1796                    ;; If there is more than one group in the
1797                    ;; Newsgroups header, then the Xref header should
1798                    ;; be filled out.  We hazard a guess that the group
1799                    ;; that has this article number in the Xref header
1800                    ;; is the one we are looking for.  This might very
1801                    ;; well be wrong if this article happens to have
1802                    ;; the same number in several groups, but that's
1803                    ;; life.
1804                    ((and (setq xref (mail-fetch-field "xref"))
1805                          number
1806                          (string-match
1807                           (format "\\([^ :]+\\):%d" number) xref))
1808                     (match-string 1 xref))
1809                    (t "")))
1810           (cond
1811            ((and (not nntp-xref-number-is-evil)
1812                  (setq xref (mail-fetch-field "xref"))
1813                  (string-match
1814                   (if group
1815                       (concat "\\(" (regexp-quote group) "\\):\\([0-9]+\\)")
1816                     "\\([^ :]+\\):\\([0-9]+\\)")
1817                   xref))
1818             (setq group (match-string 1 xref)
1819                   number (string-to-number (match-string 2 xref))))
1820            ((and (setq newsgroups
1821                        (mail-fetch-field "newsgroups"))
1822                  (not (string-match "," newsgroups)))
1823             (setq group newsgroups))
1824            (group)
1825            (t (setq group ""))))
1826         (when (string-match "\r" group)
1827           (setq group (substring group 0 (match-beginning 0))))
1828         (cons group number)))))
1829
1830 (defun nntp-wait-for-string (regexp)
1831   "Wait until string arrives in the buffer."
1832   (let ((buf (current-buffer))
1833         proc)
1834     (goto-char (point-min))
1835     (while (and (setq proc (get-buffer-process buf))
1836                 (memq (process-status proc) '(open run))
1837                 (not (re-search-forward regexp nil t)))
1838       (accept-process-output proc 0.1)
1839       (set-buffer buf)
1840       (goto-char (point-min)))))
1841
1842
1843 ;; ==========================================================================
1844 ;; Obsolete nntp-open-* connection methods -- drv
1845 ;; ==========================================================================
1846
1847 (defvoo nntp-open-telnet-envuser nil
1848   "*If non-nil, telnet session (client and server both) will support the ENVIRON option and not prompt for login name.")
1849
1850 (defvoo nntp-telnet-shell-prompt "bash\\|\$ *\r?$\\|> *\r?"
1851   "*Regular expression to match the shell prompt on the remote machine.")
1852
1853 (defvoo nntp-rlogin-program "rsh"
1854   "*Program used to log in on remote machines.
1855 The default is \"rsh\", but \"ssh\" is a popular alternative.")
1856
1857 (defvoo nntp-rlogin-parameters '("telnet" "-8" "${NNTPSERVER:=news}" "nntp")
1858   "*Parameters to `nntp-open-rlogin'.
1859 That function may be used as `nntp-open-connection-function'.  In that
1860 case, this list will be used as the parameter list given to rsh.")
1861
1862 (defvoo nntp-rlogin-user-name nil
1863   "*User name on remote system when using the rlogin connect method.")
1864
1865 (defvoo nntp-telnet-parameters
1866     '("exec" "telnet" "-8" "${NNTPSERVER:=news}" "nntp")
1867   "*Parameters to `nntp-open-telnet'.
1868 That function may be used as `nntp-open-connection-function'.  In that
1869 case, this list will be executed as a command after logging in
1870 via telnet.")
1871
1872 (defvoo nntp-telnet-user-name nil
1873   "User name to log in via telnet with.")
1874
1875 (defvoo nntp-telnet-passwd nil
1876   "Password to use to log in via telnet with.")
1877
1878 (defun nntp-service-to-port (svc)
1879   (cond
1880    ((integerp svc) (number-to-string svc))
1881    ((string-match "\\`[0-9]+\\'" svc) svc)
1882    (t
1883     (with-temp-buffer
1884       (ignore-errors (insert-file-contents "/etc/services"))
1885       (goto-char (point-min))
1886       (if (re-search-forward (concat "^" (regexp-quote svc)
1887                                      "[ \t]+\\([0-9]+\\)/tcp"))
1888           (match-string 1)
1889         svc)))))
1890
1891 (defun nntp-open-telnet (buffer)
1892   (with-current-buffer buffer
1893     (erase-buffer)
1894     (let ((proc (apply
1895                  'start-process
1896                  "nntpd" buffer nntp-telnet-command nntp-telnet-switches))
1897           (case-fold-search t))
1898       (when (memq (process-status proc) '(open run))
1899         (nntp-wait-for-string "^r?telnet")
1900         (process-send-string proc "set escape \^X\n")
1901         (cond
1902          ((and nntp-open-telnet-envuser nntp-telnet-user-name)
1903           (process-send-string proc (concat "open " "-l" nntp-telnet-user-name
1904                                             nntp-address "\n")))
1905          (t
1906           (process-send-string proc (concat "open " nntp-address "\n"))))
1907         (cond
1908          ((not nntp-open-telnet-envuser)
1909           (nntp-wait-for-string "^\r*.?login:")
1910           (process-send-string
1911            proc (concat
1912                  (or nntp-telnet-user-name
1913                      (setq nntp-telnet-user-name (read-string "login: ")))
1914                  "\n"))))
1915         (nntp-wait-for-string "^\r*.?password:")
1916         (process-send-string
1917          proc (concat
1918                (or nntp-telnet-passwd
1919                    (setq nntp-telnet-passwd
1920                          (read-passwd "Password: ")))
1921                "\n"))
1922         (nntp-wait-for-string nntp-telnet-shell-prompt)
1923         (process-send-string
1924          proc (concat (mapconcat 'identity nntp-telnet-parameters " ") "\n"))
1925         (nntp-wait-for-string "^\r*20[01]")
1926         (beginning-of-line)
1927         (delete-region (point-min) (point))
1928         (process-send-string proc "\^]")
1929         (nntp-wait-for-string "^r?telnet")
1930         (process-send-string proc "mode character\n")
1931         (accept-process-output proc 1)
1932         (sit-for 1)
1933         (goto-char (point-min))
1934         (forward-line 1)
1935         (delete-region (point) (point-max)))
1936       proc)))
1937
1938 (defun nntp-open-rlogin (buffer)
1939   "Open a connection to SERVER using rsh."
1940   (let ((proc (if nntp-rlogin-user-name
1941                   (apply 'start-process
1942                          "nntpd" buffer nntp-rlogin-program
1943                          nntp-address "-l" nntp-rlogin-user-name
1944                          nntp-rlogin-parameters)
1945                 (apply 'start-process
1946                        "nntpd" buffer nntp-rlogin-program nntp-address
1947                        nntp-rlogin-parameters))))
1948     (with-current-buffer buffer
1949       (nntp-wait-for-string "^\r*20[01]")
1950       (beginning-of-line)
1951       (delete-region (point-min) (point))
1952       proc)))
1953
1954
1955 ;; ==========================================================================
1956 ;; Replacements for the nntp-open-* functions -- drv
1957 ;; ==========================================================================
1958
1959 (defun nntp-open-telnet-stream (buffer)
1960   "Open a nntp connection by telnet'ing the news server.
1961 `nntp-open-netcat-stream' is recommended in place of this function
1962 because it is more reliable.
1963
1964 Please refer to the following variables to customize the connection:
1965 - `nntp-pre-command',
1966 - `nntp-telnet-command',
1967 - `nntp-telnet-switches',
1968 - `nntp-address',
1969 - `nntp-port-number',
1970 - `nntp-end-of-line'."
1971   (let ((command `(,nntp-telnet-command
1972                    ,@nntp-telnet-switches
1973                    ,nntp-address
1974                    ,(nntp-service-to-port nntp-port-number)))
1975         proc)
1976     (and nntp-pre-command
1977          (push nntp-pre-command command))
1978     (setq proc (apply 'start-process "nntpd" buffer command))
1979     (with-current-buffer buffer
1980       (nntp-wait-for-string "^\r*20[01]")
1981       (beginning-of-line)
1982       (delete-region (point-min) (point))
1983       proc)))
1984
1985 (defun nntp-open-via-rlogin-and-telnet (buffer)
1986   "Open a connection to an nntp server through an intermediate host.
1987 First rlogin to the remote host, and then telnet the real news server
1988 from there.
1989 `nntp-open-via-rlogin-and-netcat' is recommended in place of this function
1990 because it is more reliable.
1991
1992 Please refer to the following variables to customize the connection:
1993 - `nntp-pre-command',
1994 - `nntp-via-rlogin-command',
1995 - `nntp-via-rlogin-command-switches',
1996 - `nntp-via-user-name',
1997 - `nntp-via-address',
1998 - `nntp-telnet-command',
1999 - `nntp-telnet-switches',
2000 - `nntp-address',
2001 - `nntp-port-number',
2002 - `nntp-end-of-line'."
2003   (let ((command `(,nntp-via-address
2004                    ,nntp-telnet-command
2005                    ,@nntp-telnet-switches))
2006         proc)
2007     (when nntp-via-user-name
2008       (setq command `("-l" ,nntp-via-user-name ,@command)))
2009     (when nntp-via-rlogin-command-switches
2010       (setq command (append nntp-via-rlogin-command-switches command)))
2011     (push nntp-via-rlogin-command command)
2012     (and nntp-pre-command
2013          (push nntp-pre-command command))
2014     (setq proc (apply 'start-process "nntpd" buffer command))
2015     (with-current-buffer buffer
2016       (nntp-wait-for-string "^r?telnet")
2017       (process-send-string proc (concat "open " nntp-address " "
2018                                         (nntp-service-to-port nntp-port-number)
2019                                         "\n"))
2020       (nntp-wait-for-string "^\r*20[01]")
2021       (beginning-of-line)
2022       (delete-region (point-min) (point))
2023       (process-send-string proc "\^]")
2024       (nntp-wait-for-string "^r?telnet")
2025       (process-send-string proc "mode character\n")
2026       (accept-process-output proc 1)
2027       (sit-for 1)
2028       (goto-char (point-min))
2029       (forward-line 1)
2030       (delete-region (point) (point-max)))
2031     proc))
2032
2033 (defun nntp-open-via-rlogin-and-netcat (buffer)
2034   "Open a connection to an nntp server through an intermediate host.
2035 First rlogin to the remote host, and then connect to the real news
2036 server from there using the netcat command.
2037
2038 Please refer to the following variables to customize the connection:
2039 - `nntp-pre-command',
2040 - `nntp-via-rlogin-command',
2041 - `nntp-via-rlogin-command-switches',
2042 - `nntp-via-user-name',
2043 - `nntp-via-address',
2044 - `nntp-netcat-command',
2045 - `nntp-netcat-switches',
2046 - `nntp-address',
2047 - `nntp-port-number'."
2048   (let ((command `(,@(when nntp-pre-command
2049                        (list nntp-pre-command))
2050                    ,nntp-via-rlogin-command
2051                    ,@nntp-via-rlogin-command-switches
2052                    ,@(when nntp-via-user-name
2053                        (list "-l" nntp-via-user-name))
2054                    ,nntp-via-address
2055                    ,nntp-netcat-command
2056                    ,@nntp-netcat-switches
2057                    ,nntp-address
2058                    ,(nntp-service-to-port nntp-port-number))))
2059     ;; A non-nil connection type results in mightily odd behavior where
2060     ;; (process-send-string proc "\^M") ends up sending a "\n" to the
2061     ;; ssh process.  --Stef
2062     ;; Also a nil connection allow ssh-askpass to work under X11.
2063     (let ((process-connection-type nil))
2064       (apply 'start-process "nntpd" buffer command))))
2065
2066 (defun nntp-open-netcat-stream (buffer)
2067   "Open a connection to an nntp server through netcat.
2068 I.e. use the `nc' command rather than Emacs's builtin networking code.
2069
2070 Please refer to the following variables to customize the connection:
2071 - `nntp-pre-command',
2072 - `nntp-netcat-command',
2073 - `nntp-netcat-switches',
2074 - `nntp-address',
2075 - `nntp-port-number'."
2076   (let ((command `(,nntp-netcat-command
2077                    ,@nntp-netcat-switches
2078                    ,nntp-address
2079                    ,(nntp-service-to-port nntp-port-number))))
2080     (and nntp-pre-command (push nntp-pre-command command))
2081     (let ((process-connection-type nil)) ;See `nntp-open-via-rlogin-and-netcat'.
2082       (apply 'start-process "nntpd" buffer command))))
2083
2084
2085 (defun nntp-open-via-telnet-and-telnet (buffer)
2086   "Open a connection to an nntp server through an intermediate host.
2087 First telnet the remote host, and then telnet the real news server
2088 from there.
2089
2090 Please refer to the following variables to customize the connection:
2091 - `nntp-pre-command',
2092 - `nntp-via-telnet-command',
2093 - `nntp-via-telnet-switches',
2094 - `nntp-via-address',
2095 - `nntp-via-envuser',
2096 - `nntp-via-user-name',
2097 - `nntp-via-user-password',
2098 - `nntp-via-shell-prompt',
2099 - `nntp-telnet-command',
2100 - `nntp-telnet-switches',
2101 - `nntp-address',
2102 - `nntp-port-number',
2103 - `nntp-end-of-line'."
2104   (with-current-buffer buffer
2105     (erase-buffer)
2106     (let ((command `(,nntp-via-telnet-command ,@nntp-via-telnet-switches))
2107           (case-fold-search t)
2108           proc)
2109       (and nntp-pre-command (push nntp-pre-command command))
2110       (setq proc (apply 'start-process "nntpd" buffer command))
2111       (when (memq (process-status proc) '(open run))
2112         (nntp-wait-for-string "^r?telnet")
2113         (process-send-string proc "set escape \^X\n")
2114         (cond
2115          ((and nntp-via-envuser nntp-via-user-name)
2116           (process-send-string proc (concat "open " "-l" nntp-via-user-name
2117                                             nntp-via-address "\n")))
2118          (t
2119           (process-send-string proc (concat "open " nntp-via-address
2120                                             "\n"))))
2121         (when (not nntp-via-envuser)
2122           (nntp-wait-for-string "^\r*.?login:")
2123           (process-send-string proc
2124                                (concat
2125                                 (or nntp-via-user-name
2126                                     (setq nntp-via-user-name
2127                                           (read-string "login: ")))
2128                                 "\n")))
2129         (nntp-wait-for-string "^\r*.?password:")
2130         (process-send-string proc
2131                              (concat
2132                               (or nntp-via-user-password
2133                                   (setq nntp-via-user-password
2134                                         (read-passwd "Password: ")))
2135                               "\n"))
2136         (nntp-wait-for-string nntp-via-shell-prompt)
2137         (let ((real-telnet-command `("exec"
2138                                      ,nntp-telnet-command
2139                                      ,@nntp-telnet-switches
2140                                      ,nntp-address
2141                                      ,(nntp-service-to-port nntp-port-number))))
2142           (process-send-string proc
2143                                (concat (mapconcat 'identity
2144                                                   real-telnet-command " ")
2145                                        "\n")))
2146         (nntp-wait-for-string "^\r*20[01]")
2147         (beginning-of-line)
2148         (delete-region (point-min) (point))
2149         (process-send-string proc "\^]")
2150         (nntp-wait-for-string "^r?telnet")
2151         (process-send-string proc "mode character\n")
2152         (accept-process-output proc 1)
2153         (sit-for 1)
2154         (goto-char (point-min))
2155         (forward-line 1)
2156         (delete-region (point) (point-max)))
2157       proc)))
2158
2159 ;; Marks handling
2160
2161 (defun nntp-marks-directory (server)
2162   (expand-file-name server nntp-marks-directory))
2163
2164 (defvar nntp-server-to-method-cache nil
2165   "Alist of servers and select methods.")
2166
2167 (defun nntp-group-pathname (server group &optional file)
2168   "Return an absolute file name of FILE for GROUP on SERVER."
2169   (let ((method (cdr (assoc server nntp-server-to-method-cache))))
2170     (unless method
2171       (push (cons server (setq method (or (gnus-server-to-method server)
2172                                           (gnus-find-method-for-group group))))
2173             nntp-server-to-method-cache))
2174     (nnmail-group-pathname
2175      (mm-decode-coding-string group
2176                               (inline (gnus-group-name-charset method group)))
2177      (nntp-marks-directory server)
2178      file)))
2179
2180 (defun nntp-possibly-create-directory (group server)
2181   (let ((dir (nntp-group-pathname server group))
2182         (file-name-coding-system nnmail-pathname-coding-system))
2183     (unless (file-exists-p dir)
2184       (make-directory (directory-file-name dir) t)
2185       (nnheader-message 5 "Creating nntp marks directory %s" dir))))
2186
2187 (autoload 'time-less-p "time-date")
2188
2189 (defun nntp-marks-changed-p (group server)
2190   (let ((file (nntp-group-pathname server group nntp-marks-file-name))
2191         (file-name-coding-system nnmail-pathname-coding-system))
2192     (if (null (gnus-gethash file nntp-marks-modtime))
2193         t ;; never looked at marks file, assume it has changed
2194       (time-less-p (gnus-gethash file nntp-marks-modtime)
2195                    (nth 5 (file-attributes file))))))
2196
2197 (defun nntp-save-marks (group server)
2198   (let ((file-name-coding-system nnmail-pathname-coding-system)
2199         (file (nntp-group-pathname server group nntp-marks-file-name)))
2200     (condition-case err
2201         (progn
2202           (nntp-possibly-create-directory group server)
2203           (with-temp-file file
2204             (erase-buffer)
2205             (gnus-prin1 nntp-marks)
2206             (insert "\n"))
2207           (gnus-sethash file
2208                         (nth 5 (file-attributes file))
2209                         nntp-marks-modtime))
2210       (error (or (gnus-yes-or-no-p
2211                   (format "Could not write to %s (%s).  Continue? " file err))
2212                  (error "Cannot write to %s (%s)" file err))))))
2213
2214 (defun nntp-open-marks (group server)
2215   (let ((file (nntp-group-pathname server group nntp-marks-file-name))
2216         (file-name-coding-system nnmail-pathname-coding-system))
2217     (if (file-exists-p file)
2218         (condition-case err
2219             (with-temp-buffer
2220               (gnus-sethash file (nth 5 (file-attributes file))
2221                             nntp-marks-modtime)
2222               (nnheader-insert-file-contents file)
2223               (setq nntp-marks (read (current-buffer)))
2224               (dolist (el gnus-article-unpropagated-mark-lists)
2225                 (setq nntp-marks (gnus-remassoc el nntp-marks))))
2226           (error (or (gnus-yes-or-no-p
2227                       (format "Error reading nntp marks file %s (%s).  Continuing will use marks from .newsrc.eld.  Continue? " file err))
2228                      (error "Cannot read nntp marks file %s (%s)" file err))))
2229       ;; User didn't have a .marks file.  Probably first time
2230       ;; user of the .marks stuff.  Bootstrap it from .newsrc.eld.
2231       (let ((info (gnus-get-info
2232                    (gnus-group-prefixed-name
2233                     group
2234                     (gnus-server-to-method (format "nntp:%s" server)))))
2235             (decoded-name (mm-decode-coding-string
2236                            group
2237                            (gnus-group-name-charset
2238                             (gnus-server-to-method server) group))))
2239         (nnheader-message 7 "Bootstrapping marks for %s..." decoded-name)
2240         (setq nntp-marks (gnus-info-marks info))
2241         (push (cons 'read (gnus-info-read info)) nntp-marks)
2242         (dolist (el gnus-article-unpropagated-mark-lists)
2243           (setq nntp-marks (gnus-remassoc el nntp-marks)))
2244         (nntp-save-marks group server)
2245         (nnheader-message 7 "Bootstrapping marks for %s...done"
2246                           decoded-name)))))
2247
2248 (provide 'nntp)
2249
2250 ;;; nntp.el ends here