]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/IMAP.pm
imap: support fetch for BODYSTRUCTURE and BODY
[public-inbox.git] / lib / PublicInbox / IMAP.pm
1 # Copyright (C) 2020 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3 #
4 # Each instance of this represents an IMAP client connected to
5 # public-inbox-imapd.  Much of this was taken from NNTP, but
6 # further refined while experimenting on future ideas to handle
7 # slow storage.
8 #
9 # data notes:
10 # * NNTP article numbers are UIDs and message sequence numbers (MSNs)
11 # * Message sequence numbers (MSNs) can be stable since we're read-only.
12 #   Most IMAP clients use UIDs (I hope), and we can return a dummy
13 #   message if a client requests a non-existent MSN.
14
15 package PublicInbox::IMAP;
16 use strict;
17 use base qw(PublicInbox::DS);
18 use fields qw(imapd logged_in ibx long_cb -login_tag
19         -idle_tag -idle_max);
20 use PublicInbox::Eml;
21 use PublicInbox::EmlContentFoo qw(parse_content_disposition);
22 use PublicInbox::DS qw(now);
23 use PublicInbox::Syscall qw(EPOLLIN EPOLLONESHOT);
24 use Text::ParseWords qw(parse_line);
25 use Errno qw(EAGAIN);
26 my $Address;
27 for my $mod (qw(Email::Address::XS Mail::Address)) {
28         eval "require $mod" or next;
29         $Address = $mod and last;
30 }
31 die "neither Email::Address::XS nor Mail::Address loaded: $@" if !$Address;
32
33 sub LINE_MAX () { 512 } # does RFC 3501 have a limit like RFC 977?
34
35 my %FETCH_NEED_BLOB = ( # for future optimization
36         'BODY.PEEK[HEADER]' => 1,
37         'BODY.PEEK[TEXT]' => 1,
38         'BODY.PEEK[]' => 1,
39         'BODY[HEADER]' => 1,
40         'BODY[TEXT]' => 1,
41         'BODY[]' => 1,
42         'RFC822.HEADER' => 1,
43         'RFC822.SIZE' => 1, # needs CRLF conversion :<
44         'RFC822.TEXT' => 1,
45         BODY => 1,
46         BODYSTRUCTURE => 1,
47         ENVELOPE => 1,
48         FLAGS => 0,
49         INTERNALDATE => 0,
50         RFC822 => 1,
51         UID => 0,
52 );
53 my %FETCH_ATT = map { $_ => [ $_ ] } keys %FETCH_NEED_BLOB;
54
55 # aliases (RFC 3501 section 6.4.5)
56 $FETCH_ATT{FAST} = [ qw(FLAGS INTERNALDATE RFC822.SIZE) ];
57 $FETCH_ATT{ALL} = [ @{$FETCH_ATT{FAST}}, 'ENVELOPE' ];
58 $FETCH_ATT{FULL} = [ @{$FETCH_ATT{ALL}}, 'BODY' ];
59
60 for my $att (keys %FETCH_ATT) {
61         my %h = map { $_ => 1 } @{$FETCH_ATT{$att}};
62         $FETCH_ATT{$att} = \%h;
63 }
64
65 sub greet ($) {
66         my ($self) = @_;
67         my $capa = capa($self);
68         $self->write(\"* OK [$capa] public-inbox-imapd ready\r\n");
69 }
70
71 sub new ($$$) {
72         my ($class, $sock, $imapd) = @_;
73         my $self = fields::new($class);
74         my $ev = EPOLLIN;
75         my $wbuf;
76         if ($sock->can('accept_SSL') && !$sock->accept_SSL) {
77                 return CORE::close($sock) if $! != EAGAIN;
78                 $ev = PublicInbox::TLS::epollbit();
79                 $wbuf = [ \&PublicInbox::DS::accept_tls_step, \&greet ];
80         }
81         $self->SUPER::new($sock, $ev | EPOLLONESHOT);
82         $self->{imapd} = $imapd;
83         if ($wbuf) {
84                 $self->{wbuf} = $wbuf;
85         } else {
86                 greet($self);
87         }
88         $self->update_idle_time;
89         $self;
90 }
91
92 sub capa ($) {
93         my ($self) = @_;
94
95         # dovecot advertises IDLE pre-login; perhaps because some clients
96         # depend on it, so we'll do the same
97         my $capa = 'CAPABILITY IMAP4rev1 IDLE';
98         if ($self->{logged_in}) {
99                 $capa .= ' COMPRESS=DEFLATE';
100         } else {
101                 if (!($self->{sock} // $self)->can('accept_SSL') &&
102                         $self->{imapd}->{accept_tls}) {
103                         $capa .= ' STARTTLS';
104                 }
105                 $capa .= ' AUTH=ANONYMOUS';
106         }
107 }
108
109 sub login_success ($$) {
110         my ($self, $tag) = @_;
111         $self->{logged_in} = 1;
112         my $capa = capa($self);
113         "$tag OK [$capa] Logged in\r\n";
114 }
115
116 sub auth_challenge_ok ($) {
117         my ($self) = @_;
118         my $tag = delete($self->{-login_tag}) or return;
119         login_success($self, $tag);
120 }
121
122 sub cmd_login ($$$$) {
123         my ($self, $tag) = @_; # ignore ($user, $password) = ($_[2], $_[3])
124         login_success($self, $tag);
125 }
126
127 sub cmd_logout ($$) {
128         my ($self, $tag) = @_;
129         delete $self->{logged_in};
130         $self->write(\"* BYE logging out\r\n$tag OK logout completed\r\n");
131         $self->shutdn; # PublicInbox::DS::shutdn
132         undef;
133 }
134
135 sub cmd_authenticate ($$$) {
136         my ($self, $tag) = @_; # $method = $_[2], should be "ANONYMOUS"
137         $self->{-login_tag} = $tag;
138         "+\r\n"; # challenge
139 }
140
141 sub cmd_capability ($$) {
142         my ($self, $tag) = @_;
143         '* '.capa($self)."\r\n$tag OK\r\n";
144 }
145
146 sub cmd_noop ($$) { "$_[1] OK NOOP completed\r\n" }
147
148 # called by PublicInbox::InboxIdle
149 sub on_inbox_unlock {
150         my ($self, $ibx) = @_;
151         my $new = $ibx->mm->max;
152         defined(my $old = $self->{-idle_max}) or die 'BUG: -idle_max unset';
153         if ($new > $old) {
154                 $self->{-idle_max} = $new;
155                 $self->msg_more("* $_ EXISTS\r\n") for (($old + 1)..($new - 1));
156                 $self->write(\"* $new EXISTS\r\n");
157         }
158 }
159
160 sub cmd_idle ($$) {
161         my ($self, $tag) = @_;
162         # IDLE seems allowed by dovecot w/o a mailbox selected *shrug*
163         my $ibx = $self->{ibx} or return "$tag BAD no mailbox selected\r\n";
164         $ibx->subscribe_unlock(fileno($self->{sock}), $self);
165         $self->{imapd}->idler_start;
166         $self->{-idle_tag} = $tag;
167         $self->{-idle_max} = $ibx->mm->max // 0;
168         "+ idling\r\n"
169 }
170
171 sub cmd_done ($$) {
172         my ($self, $tag) = @_; # $tag is "DONE" (case-insensitive)
173         defined(my $idle_tag = delete $self->{-idle_tag}) or
174                 return "$tag BAD not idle\r\n";
175         my $ibx = $self->{ibx} or do {
176                 warn "BUG: idle_tag set w/o inbox";
177                 return "$tag BAD internal bug\r\n";
178         };
179         $ibx->unsubscribe_unlock(fileno($self->{sock}));
180         "$idle_tag OK Idle completed\r\n";
181 }
182
183 sub cmd_examine ($$$) {
184         my ($self, $tag, $mailbox) = @_;
185         my $ibx = $self->{imapd}->{groups}->{$mailbox} or
186                 return "$tag NO Mailbox doesn't exist: $mailbox\r\n";
187         my $mm = $ibx->mm;
188         my $max = $mm->max // 0;
189         # RFC 3501 2.3.1.1 -  "A good UIDVALIDITY value to use in
190         # this case is a 32-bit representation of the creation
191         # date/time of the mailbox"
192         my $uidvalidity = $mm->created_at or return "$tag BAD UIDVALIDITY\r\n";
193         my $uidnext = $max + 1;
194
195         # XXX: do we need this? RFC 5162/7162
196         my $ret = $self->{ibx} ? "* OK [CLOSED] previous closed\r\n" : '';
197         $self->{ibx} = $ibx;
198         $ret .= <<EOF;
199 * $max EXISTS\r
200 * $max RECENT\r
201 * FLAGS (\\Seen)\r
202 * OK [PERMANENTFLAGS ()] Read-only mailbox\r
203 EOF
204         $ret .= "* OK [UNSEEN $max]\r\n" if $max;
205         $ret .= "* OK [UIDNEXT $uidnext]\r\n" if defined $uidnext;
206         $ret .= "* OK [UIDVALIDITY $uidvalidity]\r\n" if defined $uidvalidity;
207         $ret .= "$tag OK [READ-ONLY] EXAMINE/SELECT complete\r\n";
208 }
209
210 sub _esc ($) {
211         my ($v) = @_;
212         if (!defined($v)) {
213                 'NIL';
214         } elsif ($v =~ /[{"\r\n%*\\\[]/) { # literal string
215                 '{' . length($v) . "}\r\n" . $v;
216         } else { # quoted string
217                 qq{"$v"}
218         }
219 }
220
221 sub addr_envelope ($$;$) {
222         my ($eml, $x, $y) = @_;
223         my $v = $eml->header_raw($x) //
224                 ($y ? $eml->header_raw($y) : undef) // return 'NIL';
225
226         my @x = $Address->parse($v) or return 'NIL';
227         '(' . join('',
228                 map { '(' . join(' ',
229                                 _esc($_->name), 'NIL',
230                                 _esc($_->user), _esc($_->host)
231                         ) . ')'
232                 } @x) .
233         ')';
234 }
235
236 sub eml_envelope ($) {
237         my ($eml) = @_;
238         '(' . join(' ',
239                 _esc($eml->header_raw('Date')),
240                 _esc($eml->header_raw('Subject')),
241                 addr_envelope($eml, 'From'),
242                 addr_envelope($eml, 'Sender', 'From'),
243                 addr_envelope($eml, 'Reply-To', 'From'),
244                 addr_envelope($eml, 'To'),
245                 addr_envelope($eml, 'Cc'),
246                 addr_envelope($eml, 'Bcc'),
247                 _esc($eml->header_raw('In-Reply-To')),
248                 _esc($eml->header_raw('Message-ID')),
249         ) . ')';
250 }
251
252 sub _esc_hash ($) {
253         my ($hash) = @_;
254         if ($hash && scalar keys %$hash) {
255                 $hash = [ %$hash ]; # flatten hash into 1-dimensional array
256                 '(' . join(' ', map { _esc($_) } @$hash) . ')';
257         } else {
258                 'NIL';
259         }
260 }
261
262 sub body_disposition ($) {
263         my ($eml) = @_;
264         my $cd = $eml->header_raw('Content-Disposition') or return 'NIL';
265         $cd = parse_content_disposition($cd);
266         my $buf = '('._esc($cd->{type});
267         $buf .= ' ' . _esc_hash(delete $cd->{attributes});
268         $buf .= ')';
269 }
270
271 sub body_leaf ($$;$) {
272         my ($eml, $structure, $hold) = @_;
273         my $buf = '';
274         $eml->{is_submsg} and # parent was a message/(rfc822|news|global)
275                 $buf .= eml_envelope($eml). ' ';
276         my $ct = $eml->ct;
277         $buf .= '('._esc($ct->{type}).' ';
278         $buf .= _esc($ct->{subtype});
279         $buf .= ' ' . _esc_hash(delete $ct->{attributes});
280         $buf .= ' ' . _esc($eml->header_raw('Content-ID'));
281         $buf .= ' ' . _esc($eml->header_raw('Content-Description'));
282         my $cte = $eml->header_raw('Content-Transfer-Encoding') // '7bit';
283         $buf .= ' ' . _esc($cte);
284         $buf .= ' ' . $eml->{imap_body_len};
285         $buf .= ' '.($eml->body_raw =~ tr/\n/\n/) if lc($ct->{type}) eq 'text';
286
287         # for message/(rfc822|global|news), $hold[0] should have envelope
288         $buf .= ' ' . (@$hold ? join('', @$hold) : 'NIL') if $hold;
289
290         if ($structure) {
291                 $buf .= ' '._esc($eml->header_raw('Content-MD5'));
292                 $buf .= ' '. body_disposition($eml);
293                 $buf .= ' '._esc($eml->header_raw('Content-Language'));
294                 $buf .= ' '._esc($eml->header_raw('Content-Location'));
295         }
296         $buf .= ')';
297 }
298
299 sub body_parent ($$$) {
300         my ($eml, $structure, $hold) = @_;
301         my $ct = $eml->ct;
302         my $type = lc($ct->{type});
303         if ($type eq 'multipart') {
304                 my $buf = '(';
305                 $buf .= @$hold ? join('', @$hold) : 'NIL';
306                 $buf .= ' '._esc($ct->{subtype});
307                 if ($structure) {
308                         $buf .= ' '._esc_hash(delete $ct->{attributes});
309                         $buf .= ' '.body_disposition($eml);
310                         $buf .= ' '._esc($eml->header_raw('Content-Language'));
311                         $buf .= ' '._esc($eml->header_raw('Content-Location'));
312                 }
313                 $buf .= ')';
314                 @$hold = ($buf);
315         } else { # message/(rfc822|global|news)
316                 @$hold = (body_leaf($eml, $structure, $hold));
317         }
318 }
319
320 # this is gross, but we need to process the parent part AFTER
321 # the child parts are done
322 sub bodystructure_prep {
323         my ($p, $q) = @_;
324         my ($eml, $depth) = @$p; # ignore idx
325         # set length here, as $eml->{bdy} gets deleted for message/rfc822
326         $eml->{imap_body_len} = length($eml->body_raw);
327         push @$q, $eml, $depth;
328 }
329
330 # for FETCH BODY and FETCH BODYSTRUCTURE
331 sub fetch_body ($;$) {
332         my ($eml, $structure) = @_;
333         my @q;
334         $eml->each_part(\&bodystructure_prep, \@q, 0, 1);
335         my $cur_depth = 0;
336         my @hold;
337         do {
338                 my ($part, $depth) = splice(@q, -2);
339                 my $is_mp_parent = $depth == ($cur_depth - 1);
340                 $cur_depth = $depth;
341
342                 if ($is_mp_parent) {
343                         body_parent($part, $structure, \@hold);
344                 } else {
345                         unshift @hold, body_leaf($part, $structure);
346                 }
347         } while (@q);
348         join('', @hold);
349 }
350
351 sub uid_fetch_cb { # called by git->cat_async
352         my ($bref, $oid, $type, $size, $fetch_m_arg) = @_;
353         my ($self, undef, $ibx, undef, undef, $msgs, $want) = @$fetch_m_arg;
354         my $smsg = shift @$msgs or die 'BUG: no smsg';
355         $smsg->{blob} eq $oid or die "BUG: $smsg->{blob} != $oid";
356         $$bref =~ s/(?<!\r)\n/\r\n/sg; # make strict clients happy
357
358         # fixup old bug from import (pre-a0c07cba0e5d8b6a)
359         $$bref =~ s/\A[\r\n]*From [^\r\n]*\r\n//s;
360
361         $self->msg_more("* $smsg->{num} FETCH (UID $smsg->{num}");
362
363         $want->{'RFC822.SIZE'} and
364                 $self->msg_more(' RFC822.SIZE '.length($$bref));
365         $want->{INTERNALDATE} and
366                 $self->msg_more(' INTERNALDATE "'.$smsg->internaldate.'"');
367         $want->{FLAGS} and $self->msg_more(' FLAGS ()');
368         for ('RFC822', 'BODY[]', 'BODY.PEEK[]') {
369                 next unless $want->{$_};
370                 $self->msg_more(" $_ {".length($$bref)."}\r\n");
371                 $self->msg_more($$bref);
372         }
373
374         my $eml = PublicInbox::Eml->new($bref);
375
376         $want->{ENVELOPE} and
377                 $self->msg_more(' ENVELOPE '.eml_envelope($eml));
378
379         for my $f ('RFC822.HEADER', 'BODY[HEADER]', 'BODY.PEEK[HEADER]') {
380                 next unless $want->{$f};
381                 $self->msg_more(" $f {".length(${$eml->{hdr}})."}\r\n");
382                 $self->msg_more(${$eml->{hdr}});
383         }
384         for my $f ('RFC822.TEXT', 'BODY[TEXT]') {
385                 next unless $want->{$f};
386                 $self->msg_more(" $f {".length($$bref)."}\r\n");
387                 $self->msg_more($$bref);
388         }
389         $want->{BODYSTRUCTURE} and
390                 $self->msg_more(' BODYSTRUCTURE '.fetch_body($eml, 1));
391         $want->{BODY} and
392                 $self->msg_more(' BODY '.fetch_body($eml));
393
394         $self->msg_more(")\r\n");
395 }
396
397 sub uid_fetch_m { # long_response
398         my ($self, $tag, $ibx, $beg, $end, $msgs, $want) = @_;
399         if (!@$msgs) { # refill
400                 @$msgs = @{$ibx->over->query_xover($$beg, $end)};
401                 if (!@$msgs) {
402                         $self->write(\"$tag OK Fetch done\r\n");
403                         return;
404                 }
405                 $$beg = $msgs->[-1]->{num} + 1;
406         }
407         my $git = $ibx->git;
408         $git->cat_async_begin; # TODO: actually make async
409         $git->cat_async($msgs->[0]->{blob}, \&uid_fetch_cb, \@_);
410         $git->cat_async_wait;
411         1;
412 }
413
414 sub cmd_status ($$$;@) {
415         my ($self, $tag, $mailbox, @items) = @_;
416         my $ibx = $self->{imapd}->{groups}->{$mailbox} or
417                 return "$tag NO Mailbox doesn't exist: $mailbox\r\n";
418         return "$tag BAD no items\r\n" if !scalar(@items);
419         ($items[0] !~ s/\A\(//s || $items[-1] !~ s/\)\z//s) and
420                 return "$tag BAD invalid args\r\n";
421
422         my $mm = $ibx->mm;
423         my ($max, @it);
424         for my $it (@items) {
425                 $it = uc($it);
426                 push @it, $it;
427                 if ($it =~ /\A(?:MESSAGES|UNSEEN|RECENT)\z/) {
428                         push(@it, ($max //= $mm->max // 0));
429                 } elsif ($it eq 'UIDNEXT') {
430                         push(@it, ($max //= $mm->max // 0) + 1);
431                 } elsif ($it eq 'UIDVALIDITY') {
432                         push(@it, $mm->created_at //
433                                 return("$tag BAD UIDVALIDITY\r\n"));
434                 } else {
435                         return "$tag BAD invalid item\r\n";
436                 }
437         }
438         return "$tag BAD no items\r\n" if !@it;
439         "* STATUS $mailbox (".join(' ', @it).")\r\n" .
440         "$tag OK Status complete\r\n";
441 }
442
443 my %patmap = ('*' => '.*', '%' => '[^\.]*');
444 sub cmd_list ($$$$) {
445         my ($self, $tag, $refname, $wildcard) = @_;
446         my $l = $self->{imapd}->{inboxlist};
447         if ($refname eq '' && $wildcard eq '') {
448                 # request for hierarchy delimiter
449                 $l = [ qq[* LIST (\\Noselect) "." ""\r\n] ];
450         } elsif ($refname ne '' || $wildcard ne '*') {
451                 $wildcard =~ s!([^a-z0-9_])!$patmap{$1} // "\Q$1"!eig;
452                 $l = [ grep(/ \Q$refname\E$wildcard\r\n\z/s, @$l) ];
453         }
454         \(join('', @$l, "$tag OK List complete\r\n"));
455 }
456
457 sub cmd_uid_fetch ($$$;@) {
458         my ($self, $tag, $range, @want) = @_;
459         my $ibx = $self->{ibx} or return "$tag BAD No mailbox selected\r\n";
460         if ($want[0] =~ s/\A\(//s) {
461                 $want[-1] =~ s/\)\z//s or return "$tag BAD no rparen\r\n";
462         }
463         my %want = map {;
464                 my $x = $FETCH_ATT{uc($_)} or return "$tag BAD param: $_\r\n";
465                 %$x;
466         } @want;
467         my ($beg, $end);
468         my $msgs = [];
469         if ($range =~ /\A([0-9]+):([0-9]+)\z/s) {
470                 ($beg, $end) = ($1, $2);
471         } elsif ($range =~ /\A([0-9]+):\*\z/s) {
472                 ($beg, $end) =  ($1, $ibx->mm->max // 0);
473         } elsif ($range =~ /\A[0-9]+\z/) {
474                 my $smsg = $ibx->over->get_art($range) or return "$tag OK\r\n";
475                 push @$msgs, $smsg;
476                 ($beg, $end) = ($range, 0);
477         } else {
478                 return "$tag BAD\r\n";
479         }
480         long_response($self, \&uid_fetch_m, $tag, $ibx,
481                                 \$beg, $end, $msgs, \%want);
482 }
483
484 sub uid_search_all { # long_response
485         my ($self, $tag, $ibx, $num) = @_;
486         my $uids = $ibx->mm->ids_after($num);
487         if (scalar(@$uids)) {
488                 $self->msg_more(join(' ', '', @$uids));
489         } else {
490                 $self->write(\"\r\n$tag OK\r\n");
491                 undef;
492         }
493 }
494
495 sub uid_search_uid_range { # long_response
496         my ($self, $tag, $ibx, $beg, $end) = @_;
497         my $uids = $ibx->mm->msg_range($beg, $end, 'num');
498         if (@$uids) {
499                 $self->msg_more(join('', map { " $_->[0]" } @$uids));
500         } else {
501                 $self->write(\"\r\n$tag OK\r\n");
502                 undef;
503         }
504 }
505
506 sub cmd_uid_search ($$$;) {
507         my ($self, $tag, $arg, @rest) = @_;
508         my $ibx = $self->{ibx} or return "$tag BAD No mailbox selected\r\n";
509         $arg = uc($arg);
510         if ($arg eq 'ALL' && !@rest) {
511                 $self->msg_more('* SEARCH');
512                 my $num = 0;
513                 long_response($self, \&uid_search_all, $tag, $ibx, \$num);
514         } elsif ($arg eq 'UID' && scalar(@rest) == 1) {
515                 if ($rest[0] =~ /\A([0-9]+):([0-9]+|\*)\z/s) {
516                         my ($beg, $end) = ($1, $2);
517                         $end = $ibx->mm->max if $end eq '*';
518                         $self->msg_more('* SEARCH');
519                         long_response($self, \&uid_search_uid_range,
520                                         $tag, $ibx, \$beg, $end);
521                 } elsif ($rest[0] =~ /\A[0-9]+\z/s) {
522                         my $uid = $rest[0];
523                         $uid = $ibx->over->get_art($uid) ? " $uid" : '';
524                         "* SEARCH$uid\r\n$tag OK\r\n";
525                 } else {
526                         "$tag BAD\r\n";
527                 }
528         } else {
529                 "$tag BAD\r\n";
530         }
531 }
532
533 sub args_ok ($$) { # duplicated from PublicInbox::NNTP
534         my ($cb, $argc) = @_;
535         my $tot = prototype $cb;
536         my ($nreq, undef) = split(';', $tot);
537         $nreq = ($nreq =~ tr/$//) - 1;
538         $tot = ($tot =~ tr/$//) - 1;
539         ($argc <= $tot && $argc >= $nreq);
540 }
541
542 # returns 1 if we can continue, 0 if not due to buffered writes or disconnect
543 sub process_line ($$) {
544         my ($self, $l) = @_;
545         my ($tag, $req, @args) = parse_line('[ \t]+', 0, $l);
546         pop(@args) if (@args && !defined($args[-1]));
547         if (@args && uc($req) eq 'UID') {
548                 $req .= "_".(shift @args);
549         }
550         my $res = eval {
551                 if (my $cmd = $self->can('cmd_'.lc($req // ''))) {
552                         defined($self->{-idle_tag}) ?
553                                 "$self->{-idle_tag} BAD expected DONE\r\n" :
554                                 $cmd->($self, $tag, @args);
555                 } elsif (uc($tag // '') eq 'DONE' && !defined($req)) {
556                         cmd_done($self, $tag);
557                 } else { # this is weird
558                         auth_challenge_ok($self) //
559                                 "$tag BAD Error in IMAP command $req: ".
560                                 "Unknown command\r\n";
561                 }
562         };
563         my $err = $@;
564         if ($err && $self->{sock}) {
565                 $l =~ s/\r?\n//s;
566                 err($self, 'error from: %s (%s)', $l, $err);
567                 $res = "$tag BAD program fault - command not performed\r\n";
568         }
569         return 0 unless defined $res;
570         $self->write($res);
571 }
572
573 sub long_step {
574         my ($self) = @_;
575         # wbuf is unset or empty, here; {long} may add to it
576         my ($fd, $cb, $t0, @args) = @{$self->{long_cb}};
577         my $more = eval { $cb->($self, @args) };
578         if ($@ || !$self->{sock}) { # something bad happened...
579                 delete $self->{long_cb};
580                 my $elapsed = now() - $t0;
581                 if ($@) {
582                         err($self,
583                             "%s during long response[$fd] - %0.6f",
584                             $@, $elapsed);
585                 }
586                 out($self, " deferred[$fd] aborted - %0.6f", $elapsed);
587                 $self->close;
588         } elsif ($more) { # $self->{wbuf}:
589                 $self->update_idle_time;
590
591                 # COMPRESS users all share the same DEFLATE context.
592                 # Flush it here to ensure clients don't see
593                 # each other's data
594                 $self->zflush;
595
596                 # no recursion, schedule another call ASAP, but only after
597                 # all pending writes are done.  autovivify wbuf:
598                 my $new_size = push(@{$self->{wbuf}}, \&long_step);
599
600                 # wbuf may be populated by $cb, no need to rearm if so:
601                 $self->requeue if $new_size == 1;
602         } else { # all done!
603                 delete $self->{long_cb};
604                 my $elapsed = now() - $t0;
605                 my $fd = fileno($self->{sock});
606                 out($self, " deferred[$fd] done - %0.6f", $elapsed);
607                 my $wbuf = $self->{wbuf}; # do NOT autovivify
608
609                 $self->requeue unless $wbuf && @$wbuf;
610         }
611 }
612
613 sub err ($$;@) {
614         my ($self, $fmt, @args) = @_;
615         printf { $self->{imapd}->{err} } $fmt."\n", @args;
616 }
617
618 sub out ($$;@) {
619         my ($self, $fmt, @args) = @_;
620         printf { $self->{imapd}->{out} } $fmt."\n", @args;
621 }
622
623 sub long_response ($$;@) {
624         my ($self, $cb, @args) = @_; # cb returns true if more, false if done
625
626         my $sock = $self->{sock} or return;
627         # make sure we disable reading during a long response,
628         # clients should not be sending us stuff and making us do more
629         # work while we are stream a response to them
630         $self->{long_cb} = [ fileno($sock), $cb, now(), @args ];
631         long_step($self); # kick off!
632         undef;
633 }
634
635 # callback used by PublicInbox::DS for any (e)poll (in/out/hup/err)
636 sub event_step {
637         my ($self) = @_;
638
639         return unless $self->flush_write && $self->{sock};
640
641         $self->update_idle_time;
642         # only read more requests if we've drained the write buffer,
643         # otherwise we can be buffering infinitely w/o backpressure
644
645         my $rbuf = $self->{rbuf} // (\(my $x = ''));
646         my $r = 1;
647
648         if (index($$rbuf, "\n") < 0) {
649                 my $off = length($$rbuf);
650                 $r = $self->do_read($rbuf, LINE_MAX, $off) or return;
651         }
652         while ($r > 0 && $$rbuf =~ s/\A[ \t]*([^\n]*?)\r?\n//) {
653                 my $line = $1;
654                 return $self->close if $line =~ /[[:cntrl:]]/s;
655                 my $t0 = now();
656                 my $fd = fileno($self->{sock});
657                 $r = eval { process_line($self, $line) };
658                 my $pending = $self->{wbuf} ? ' pending' : '';
659                 out($self, "[$fd] %s - %0.6f$pending", $line, now() - $t0);
660         }
661
662         return $self->close if $r < 0;
663         my $len = length($$rbuf);
664         return $self->close if ($len >= LINE_MAX);
665         $self->rbuf_idle($rbuf);
666         $self->update_idle_time;
667
668         # maybe there's more pipelined data, or we'll have
669         # to register it for socket-readiness notifications
670         $self->requeue unless $self->{wbuf};
671 }
672
673 sub compressed { undef }
674
675 sub zflush {} # overridden by IMAPdeflate
676
677 # RFC 4978
678 sub cmd_compress ($$$) {
679         my ($self, $tag, $alg) = @_;
680         return "$tag BAD DEFLATE only\r\n" if uc($alg) ne "DEFLATE";
681         return "$tag BAD COMPRESS active\r\n" if $self->compressed;
682
683         # CRIME made TLS compression obsolete
684         # return "$tag NO [COMPRESSIONACTIVE]\r\n" if $self->tls_compressed;
685
686         PublicInbox::IMAPdeflate->enable($self, $tag);
687         $self->requeue;
688         undef
689 }
690
691 sub cmd_starttls ($$) {
692         my ($self, $tag) = @_;
693         my $sock = $self->{sock} or return;
694         if ($sock->can('stop_SSL') || $self->compressed) {
695                 return "$tag BAD TLS or compression already enabled\r\n";
696         }
697         my $opt = $self->{imapd}->{accept_tls} or
698                 return "$tag BAD can not initiate TLS negotiation\r\n";
699         $self->write(\"$tag OK begin TLS negotiation now\r\n");
700         $self->{sock} = IO::Socket::SSL->start_SSL($sock, %$opt);
701         $self->requeue if PublicInbox::DS::accept_tls_step($self);
702         undef;
703 }
704
705 # for graceful shutdown in PublicInbox::Daemon:
706 sub busy {
707         my ($self, $now) = @_;
708         ($self->{rbuf} || $self->{wbuf} || $self->not_idle_long($now));
709 }
710
711 sub close {
712         my ($self) = @_;
713         if (my $ibx = delete $self->{ibx}) {
714                 if (my $sock = $self->{sock}) {;
715                         $ibx->unsubscribe_unlock(fileno($sock));
716                 }
717         }
718         $self->SUPER::close; # PublicInbox::DS::close
719 }
720
721 # we're read-only, so SELECT and EXAMINE do the same thing
722 no warnings 'once';
723 *cmd_select = \&cmd_examine;
724
725 1;