]> jfr.im git - solanum.git/blame - librb/src/linebuf.c
librb: linebuf needs to use the buffer limit from msgbuf_unparse_prefix
[solanum.git] / librb / src / linebuf.c
CommitLineData
db137867
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * linebuf.c: Maintains linebuffers.
4 *
5 * Copyright (C) 2001-2002 Adrian Chadd <adrian@creative.net.au>
6 * Copyright (C) 2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
22 * USA
23 *
db137867
AC
24 */
25
fe037171
EM
26#include <librb_config.h>
27#include <rb_lib.h>
db137867
AC
28#include <commio-int.h>
29
db137867 30static rb_bh *rb_linebuf_heap;
db137867
AC
31
32static int bufline_count = 0;
33
db137867
AC
34/*
35 * rb_linebuf_init
36 *
37 * Initialise the linebuf mechanism
38 */
39
40void
41rb_linebuf_init(size_t heap_size)
42{
db137867 43 rb_linebuf_heap = rb_bh_create(sizeof(buf_line_t), heap_size, "librb_linebuf_heap");
db137867
AC
44}
45
46static buf_line_t *
47rb_linebuf_allocate(void)
48{
49 buf_line_t *t;
db137867 50 t = rb_bh_alloc(rb_linebuf_heap);
db137867
AC
51 return (t);
52
53}
54
55static void
56rb_linebuf_free(buf_line_t * p)
57{
db137867 58 rb_bh_free(rb_linebuf_heap, p);
db137867
AC
59}
60
61/*
62 * rb_linebuf_new_line
63 *
64 * Create a new line, and link it to the given linebuf.
65 * It will be initially empty.
66 */
67static buf_line_t *
68rb_linebuf_new_line(buf_head_t * bufhead)
69{
70 buf_line_t *bufline;
db137867
AC
71
72 bufline = rb_linebuf_allocate();
73 if(bufline == NULL)
74 return NULL;
75 ++bufline_count;
76
db137867 77 /* Stick it at the end of the buf list */
a2bfe0f8 78 rb_dlinkAddTailAlloc(bufline, &bufhead->list);
db137867
AC
79 bufline->refcount++;
80
81 /* And finally, update the allocated size */
82 bufhead->alloclen++;
83 bufhead->numlines++;
84
85 return bufline;
86}
87
88
89/*
90 * rb_linebuf_done_line
91 *
92 * We've finished with the given line, so deallocate it
93 */
94static void
3202e249 95rb_linebuf_done_line(buf_head_t * bufhead, buf_line_t * bufline, rb_dlink_node *node)
db137867
AC
96{
97 /* Remove it from the linked list */
98 rb_dlinkDestroy(node, &bufhead->list);
99
100 /* Update the allocated size */
101 bufhead->alloclen--;
102 bufhead->len -= bufline->len;
103 lrb_assert(bufhead->len >= 0);
104 bufhead->numlines--;
105
106 bufline->refcount--;
107 lrb_assert(bufline->refcount >= 0);
108
109 if(bufline->refcount == 0)
110 {
111 /* and finally, deallocate the buf */
112 --bufline_count;
113 lrb_assert(bufline_count >= 0);
114 rb_linebuf_free(bufline);
115 }
116}
117
118
119/*
120 * skip to end of line or the crlfs, return the number of bytes ..
121 */
122static inline int
123rb_linebuf_skip_crlf(char *ch, int len)
124{
125 int orig_len = len;
126
127 /* First, skip until the first non-CRLF */
128 for(; len; len--, ch++)
129 {
130 if(*ch == '\r')
131 break;
132 else if(*ch == '\n')
133 break;
134 }
135
136 /* Then, skip until the last CRLF */
137 for(; len; len--, ch++)
138 {
139 if((*ch != '\r') && (*ch != '\n'))
140 break;
141 }
142 lrb_assert(orig_len > len);
143 return (orig_len - len);
144}
145
146
147
148/*
149 * rb_linebuf_newbuf
150 *
151 * Initialise the new buffer
152 */
153void
154rb_linebuf_newbuf(buf_head_t * bufhead)
155{
156 /* not much to do right now :) */
157 memset(bufhead, 0, sizeof(buf_head_t));
158}
159
160/*
161 * rb_linebuf_donebuf
162 *
163 * Flush all the lines associated with this buffer
164 */
165void
166rb_linebuf_donebuf(buf_head_t * bufhead)
167{
168 while(bufhead->list.head != NULL)
169 {
3202e249
VY
170 rb_linebuf_done_line(bufhead, (buf_line_t *) bufhead->list.head->data,
171 bufhead->list.head);
db137867
AC
172 }
173}
174
175/*
176 * rb_linebuf_copy_line
177 *
178 * Okay..this functions comments made absolutely no sense.
55abcbb2 179 *
db137867
AC
180 * Basically what we do is this. Find the first chunk of text
181 * and then scan for a CRLF. If we didn't find it, but we didn't
182 * overflow our buffer..we wait for some more data.
183 * If we found a CRLF, we replace them with a \0 character.
184 * If we overflowed, we copy the most our buffer can handle, terminate
185 * it with a \0 and return.
186 *
187 * The return value is the amount of data we consumed. This could
188 * be different than the size of the linebuffer, as when we discard
189 * the overflow, we don't want to process it again.
190 *
191 * This still sucks in my opinion, but it seems to work.
192 *
193 * -Aaron
194 */
195static int
196rb_linebuf_copy_line(buf_head_t * bufhead, buf_line_t * bufline, char *data, int len)
197{
198 int cpylen = 0; /* how many bytes we've copied */
199 char *ch = data; /* Pointer to where we are in the read data */
200 char *bufch = bufline->buf + bufline->len;
201 int clen = 0; /* how many bytes we've processed,
202 and don't ever want to see again.. */
203
204 /* If its full or terminated, ignore it */
205
206 bufline->raw = 0;
9f46eae6 207 lrb_assert(bufline->len <= LINEBUF_DATA_SIZE);
db137867
AC
208 if(bufline->terminated == 1)
209 return 0;
210
211 clen = cpylen = rb_linebuf_skip_crlf(ch, len);
212 if(clen == -1)
213 return -1;
214
215 /* This is the ~overflow case..This doesn't happen often.. */
9f46eae6 216 if(cpylen > (LINEBUF_DATA_SIZE - bufline->len))
db137867 217 {
9f46eae6 218 cpylen = LINEBUF_DATA_SIZE - bufline->len;
1c864688 219 memcpy(bufch, ch, cpylen);
9f46eae6
SA
220 bufline->buf[LINEBUF_DATA_SIZE] = '\0';
221 bufch = bufline->buf + LINEBUF_DATA_SIZE - 1;
db137867
AC
222 while(cpylen && (*bufch == '\r' || *bufch == '\n'))
223 {
224 *bufch = '\0';
225 cpylen--;
226 bufch--;
227 }
228 bufline->terminated = 1;
9f46eae6
SA
229 bufline->len = LINEBUF_DATA_SIZE;
230 bufhead->len += LINEBUF_DATA_SIZE;
db137867
AC
231 return clen;
232 }
233
234 memcpy(bufch, ch, cpylen);
235 bufch += cpylen;
236 *bufch = '\0';
237 bufch--;
238
239 if(*bufch != '\r' && *bufch != '\n')
240 {
241 /* No linefeed, bail for the next time */
242 bufhead->len += cpylen;
243 bufline->len += cpylen;
244 bufline->terminated = 0;
245 return clen;
246 }
247
248 /* Yank the CRLF off this, replace with a \0 */
249 while(cpylen && (*bufch == '\r' || *bufch == '\n'))
250 {
251 *bufch = '\0';
252 cpylen--;
253 bufch--;
254 }
255
256 bufline->terminated = 1;
257 bufhead->len += cpylen;
258 bufline->len += cpylen;
259 return clen;
260}
261
262/*
263 * rb_linebuf_copy_raw
264 *
265 * Copy as much data as possible directly into a linebuf,
266 * splitting at \r\n, but without altering any data.
267 *
268 */
269static int
270rb_linebuf_copy_raw(buf_head_t * bufhead, buf_line_t * bufline, char *data, int len)
271{
272 int cpylen = 0; /* how many bytes we've copied */
273 char *ch = data; /* Pointer to where we are in the read data */
274 char *bufch = bufline->buf + bufline->len;
275 int clen = 0; /* how many bytes we've processed,
276 and don't ever want to see again.. */
277
278 /* If its full or terminated, ignore it */
279
280 bufline->raw = 1;
9f46eae6 281 lrb_assert(bufline->len <= LINEBUF_DATA_SIZE);
db137867
AC
282 if(bufline->terminated == 1)
283 return 0;
284
285 clen = cpylen = rb_linebuf_skip_crlf(ch, len);
286 if(clen == -1)
287 return -1;
288
289 /* This is the overflow case..This doesn't happen often.. */
9f46eae6 290 if(cpylen > (LINEBUF_DATA_SIZE - bufline->len))
db137867 291 {
9f46eae6 292 clen = LINEBUF_DATA_SIZE - bufline->len;
db137867 293 memcpy(bufch, ch, clen);
9f46eae6 294 bufline->buf[LINEBUF_DATA_SIZE] = '\0';
db137867 295 bufline->terminated = 1;
9f46eae6
SA
296 bufline->len = LINEBUF_DATA_SIZE;
297 bufhead->len += LINEBUF_DATA_SIZE;
db137867
AC
298 return clen;
299 }
300
301 memcpy(bufch, ch, cpylen);
302 bufch += cpylen;
303 *bufch = '\0';
304 bufch--;
305
306 if(*bufch != '\r' && *bufch != '\n')
307 {
308 /* No linefeed, bail for the next time */
309 bufhead->len += cpylen;
310 bufline->len += cpylen;
311 bufline->terminated = 0;
312 return clen;
313 }
314
315 bufline->terminated = 1;
316 bufhead->len += cpylen;
317 bufline->len += cpylen;
318 return clen;
319}
320
321
322/*
323 * rb_linebuf_parse
324 *
325 * Take a given buffer and break out as many buffers as we can.
326 * If we find a CRLF, we terminate that buffer and create a new one.
327 * If we don't find a CRLF whilst parsing a buffer, we don't mark it
328 * 'finished', so the next loop through we can continue appending ..
329 *
330 * A few notes here, which you'll need to understand before continuing.
331 *
332 * - right now I'm only dealing with single sized buffers. Later on,
333 * I might consider chaining buffers together to get longer "lines"
334 * but seriously, I don't see the advantage right now.
335 *
336 * - This *is* designed to turn into a reference-counter-protected setup
337 * to dodge copious copies.
338 */
339int
340rb_linebuf_parse(buf_head_t * bufhead, char *data, int len, int raw)
341{
342 buf_line_t *bufline;
343 int cpylen;
344 int linecnt = 0;
345
346 /* First, if we have a partial buffer, try to squeze data into it */
347 if(bufhead->list.tail != NULL)
348 {
349 /* Check we're doing the partial buffer thing */
350 bufline = bufhead->list.tail->data;
db137867
AC
351 /* just try, the worst it could do is *reject* us .. */
352 if(!raw)
353 cpylen = rb_linebuf_copy_line(bufhead, bufline, data, len);
354 else
355 cpylen = rb_linebuf_copy_raw(bufhead, bufline, data, len);
356
357 if(cpylen == -1)
358 return -1;
359
360 linecnt++;
361 /* If we've copied the same as what we've got, quit now */
362 if(cpylen == len)
363 return linecnt; /* all the data done so soon? */
364
365 /* Skip the data and update len .. */
366 len -= cpylen;
367 lrb_assert(len >= 0);
368 data += cpylen;
369 }
370
371 /* Next, the loop */
372 while(len > 0)
373 {
374 /* We obviously need a new buffer, so .. */
375 bufline = rb_linebuf_new_line(bufhead);
376
377 /* And parse */
378 if(!raw)
379 cpylen = rb_linebuf_copy_line(bufhead, bufline, data, len);
380 else
381 cpylen = rb_linebuf_copy_raw(bufhead, bufline, data, len);
382
383 if(cpylen == -1)
384 return -1;
385
386 len -= cpylen;
387 lrb_assert(len >= 0);
388 data += cpylen;
389 linecnt++;
390 }
391 return linecnt;
392}
393
394
395/*
396 * rb_linebuf_get
397 *
398 * get the next buffer from our line. For the time being it will copy
399 * data into the given buffer and free the underlying linebuf.
400 */
401int
402rb_linebuf_get(buf_head_t * bufhead, char *buf, int buflen, int partial, int raw)
403{
404 buf_line_t *bufline;
405 int cpylen;
406 char *start, *ch;
407
408 /* make sure we have a line */
409 if(bufhead->list.head == NULL)
410 return 0; /* Obviously not.. hrm. */
411
412 bufline = bufhead->list.head->data;
413
414 /* make sure that the buffer was actually *terminated */
415 if(!(partial || bufline->terminated))
416 return 0; /* Wait for more data! */
417
418 if(buflen < bufline->len)
419 cpylen = buflen - 1;
420 else
421 cpylen = bufline->len;
422
423 /* Copy it */
424 start = bufline->buf;
425
426 /* if we left extraneous '\r\n' characters in the string,
427 * and we don't want to read the raw data, clean up the string.
428 */
429 if(bufline->raw && !raw)
430 {
431 /* skip leading EOL characters */
432 while(cpylen && (*start == '\r' || *start == '\n'))
433 {
434 start++;
435 cpylen--;
436 }
437 /* skip trailing EOL characters */
438 ch = &start[cpylen - 1];
439 while(cpylen && (*ch == '\r' || *ch == '\n'))
440 {
441 ch--;
442 cpylen--;
443 }
444 }
445
446 memcpy(buf, start, cpylen);
447
448 /* convert CR/LF to NULL */
449 if(!raw)
450 buf[cpylen] = '\0';
451
452 lrb_assert(cpylen >= 0);
453
454 /* Deallocate the line */
455 rb_linebuf_done_line(bufhead, bufline, bufhead->list.head);
456
457 /* return how much we copied */
458 return cpylen;
459}
460
461/*
462 * rb_linebuf_attach
463 *
464 * attach the lines in a buf_head_t to another buf_head_t
465 * without copying the data (using refcounts).
466 */
467void
468rb_linebuf_attach(buf_head_t * bufhead, buf_head_t * new)
469{
470 rb_dlink_node *ptr;
471 buf_line_t *line;
472
473 RB_DLINK_FOREACH(ptr, new->list.head)
474 {
475 line = ptr->data;
476 rb_dlinkAddTailAlloc(line, &bufhead->list);
477
478 /* Update the allocated size */
479 bufhead->alloclen++;
480 bufhead->len += line->len;
481 bufhead->numlines++;
482
483 line->refcount++;
484 }
485}
486
db137867
AC
487/*
488 * rb_linebuf_putmsg
489 *
490 * Similar to rb_linebuf_put, but designed for use by send.c.
491 *
492 * prefixfmt is used as a format for the varargs, and is inserted first.
493 * Then format/va_args is appended to the buffer.
494 */
495void
3202e249
VY
496rb_linebuf_putmsg(buf_head_t * bufhead, const char *format, va_list * va_args,
497 const char *prefixfmt, ...)
db137867
AC
498{
499 buf_line_t *bufline;
500 int len = 0;
501 va_list prefix_args;
502
503 /* make sure the previous line is terminated */
db137867
AC
504 if(bufhead->list.tail)
505 {
506 bufline = bufhead->list.tail->data;
507 lrb_assert(bufline->terminated);
508 }
9f46eae6 509
db137867
AC
510 /* Create a new line */
511 bufline = rb_linebuf_new_line(bufhead);
512
513 if(prefixfmt != NULL)
514 {
515 va_start(prefix_args, prefixfmt);
9f46eae6 516 len = vsnprintf(bufline->buf, LINEBUF_DATA_SIZE + 1, prefixfmt, prefix_args);
db137867
AC
517 va_end(prefix_args);
518 }
519
520 if(va_args != NULL)
521 {
9f46eae6 522 len += vsnprintf((bufline->buf + len), (LINEBUF_DATA_SIZE - len) + 1, format, *va_args);
db137867
AC
523 }
524
525 bufline->terminated = 1;
526
527 /* Truncate the data if required */
9f46eae6 528 if(len > LINEBUF_DATA_SIZE)
db137867 529 {
9f46eae6 530 len = LINEBUF_DATA_SIZE;
db137867
AC
531 bufline->buf[len++] = '\r';
532 bufline->buf[len++] = '\n';
533 }
9f46eae6 534 else if(len == 0)
db137867
AC
535 {
536 bufline->buf[len++] = '\r';
537 bufline->buf[len++] = '\n';
538 bufline->buf[len] = '\0';
539 }
540 else
541 {
542 /* Chop trailing CRLF's .. */
3202e249
VY
543 while((bufline->buf[len] == '\r') || (bufline->buf[len] == '\n')
544 || (bufline->buf[len] == '\0'))
db137867
AC
545 {
546 len--;
547 }
548
549 bufline->buf[++len] = '\r';
550 bufline->buf[++len] = '\n';
551 bufline->buf[++len] = '\0';
552 }
553
554 bufline->len = len;
555 bufhead->len += len;
556}
557
5abeae60
AC
558/*
559 * rb_linebuf_putprefix
560 *
561 * Similar to rb_linebuf_put, but designed for use by send.c.
562 *
563 * prefix is inserted first, then format/va_args is appended to the buffer.
4c7d1de8 564 * prefix_buflen is the maximum size of the buffer that can be used so that the RFC1459 message is not too long
5abeae60
AC
565 */
566void
567rb_linebuf_putprefix(buf_head_t * bufhead, const char *format, va_list * va_args,
4c7d1de8 568 const char *prefix, size_t prefix_buflen)
5abeae60
AC
569{
570 buf_line_t *bufline;
571 int len = 0;
572
573 /* make sure the previous line is terminated */
5abeae60
AC
574 if(bufhead->list.tail)
575 {
576 bufline = bufhead->list.tail->data;
577 lrb_assert(bufline->terminated);
578 }
9f46eae6 579
5abeae60
AC
580 /* Create a new line */
581 bufline = rb_linebuf_new_line(bufhead);
582
583 if(prefix != NULL)
9f46eae6 584 len = rb_strlcpy(bufline->buf, prefix, LINEBUF_DATA_SIZE + 1);
5abeae60
AC
585
586 if(va_args != NULL)
587 {
4c7d1de8
SA
588 if (prefix_buflen > LINEBUF_DATA_SIZE + 1)
589 prefix_buflen = LINEBUF_DATA_SIZE + 1;
590 len += vsnprintf((bufline->buf + len), prefix_buflen - len, format, *va_args);
5abeae60
AC
591 }
592
593 bufline->terminated = 1;
594
595 /* Truncate the data if required */
9f46eae6 596 if(len > LINEBUF_DATA_SIZE)
5abeae60 597 {
9f46eae6 598 len = LINEBUF_DATA_SIZE;
5abeae60
AC
599 bufline->buf[len++] = '\r';
600 bufline->buf[len++] = '\n';
601 }
9f46eae6 602 else if(len == 0)
5abeae60
AC
603 {
604 bufline->buf[len++] = '\r';
605 bufline->buf[len++] = '\n';
606 bufline->buf[len] = '\0';
607 }
608 else
609 {
610 /* Chop trailing CRLF's .. */
611 while((bufline->buf[len] == '\r') || (bufline->buf[len] == '\n')
612 || (bufline->buf[len] == '\0'))
613 {
614 len--;
615 }
616
617 bufline->buf[++len] = '\r';
618 bufline->buf[++len] = '\n';
619 bufline->buf[++len] = '\0';
620 }
621
622 bufline->len = len;
623 bufhead->len += len;
624}
625
db137867 626void
3202e249 627rb_linebuf_putbuf(buf_head_t * bufhead, const char *buffer)
db137867
AC
628{
629 buf_line_t *bufline;
630 int len = 0;
631
632 /* make sure the previous line is terminated */
db137867
AC
633 if(bufhead->list.tail)
634 {
635 bufline = bufhead->list.tail->data;
636 lrb_assert(bufline->terminated);
637 }
9f46eae6 638
db137867
AC
639 /* Create a new line */
640 bufline = rb_linebuf_new_line(bufhead);
641
9f46eae6
SA
642 if(buffer != NULL)
643 len = rb_strlcpy(bufline->buf, buffer, LINEBUF_DATA_SIZE + 1);
db137867
AC
644
645 bufline->terminated = 1;
646
647 /* Truncate the data if required */
9f46eae6 648 if(len > LINEBUF_DATA_SIZE)
db137867 649 {
9f46eae6 650 len = LINEBUF_DATA_SIZE;
db137867
AC
651 bufline->buf[len++] = '\r';
652 bufline->buf[len++] = '\n';
653 }
9f46eae6 654 else if(len == 0)
db137867
AC
655 {
656 bufline->buf[len++] = '\r';
657 bufline->buf[len++] = '\n';
658 bufline->buf[len] = '\0';
659 }
660 else
661 {
662 /* Chop trailing CRLF's .. */
3202e249
VY
663 while((bufline->buf[len] == '\r') || (bufline->buf[len] == '\n')
664 || (bufline->buf[len] == '\0'))
db137867
AC
665 {
666 len--;
667 }
668
669 bufline->buf[++len] = '\r';
670 bufline->buf[++len] = '\n';
671 bufline->buf[++len] = '\0';
672 }
673
674 bufline->len = len;
675 bufhead->len += len;
676
3202e249 677
db137867
AC
678}
679
680void
681rb_linebuf_put(buf_head_t * bufhead, const char *format, ...)
682{
683 buf_line_t *bufline;
684 int len = 0;
685 va_list args;
686
687 /* make sure the previous line is terminated */
db137867
AC
688 if(bufhead->list.tail)
689 {
690 bufline = bufhead->list.tail->data;
691 lrb_assert(bufline->terminated);
692 }
9f46eae6 693
db137867
AC
694 /* Create a new line */
695 bufline = rb_linebuf_new_line(bufhead);
696
9f46eae6 697 if(format != NULL)
db137867
AC
698 {
699 va_start(args, format);
9f46eae6 700 len = vsnprintf(bufline->buf, LINEBUF_DATA_SIZE + 1, format, args);
db137867
AC
701 va_end(args);
702 }
703
704 bufline->terminated = 1;
705
706 /* Truncate the data if required */
9f46eae6 707 if(len > LINEBUF_DATA_SIZE)
db137867 708 {
9f46eae6 709 len = LINEBUF_DATA_SIZE;
db137867
AC
710 bufline->buf[len++] = '\r';
711 bufline->buf[len++] = '\n';
712 }
9f46eae6 713 else if(len == 0)
db137867
AC
714 {
715 bufline->buf[len++] = '\r';
716 bufline->buf[len++] = '\n';
717 bufline->buf[len] = '\0';
718 }
719 else
720 {
721 /* Chop trailing CRLF's .. */
3202e249
VY
722 while((bufline->buf[len] == '\r') || (bufline->buf[len] == '\n')
723 || (bufline->buf[len] == '\0'))
db137867
AC
724 {
725 len--;
726 }
727
728 bufline->buf[++len] = '\r';
729 bufline->buf[++len] = '\n';
730 bufline->buf[++len] = '\0';
731 }
732
733 bufline->len = len;
734 bufhead->len += len;
735}
736
737
738
739/*
740 * rb_linebuf_flush
741 *
742 * Flush data to the buffer. It tries to write as much data as possible
743 * to the given socket. Any return values are passed straight through.
744 * If there is no data in the socket, EWOULDBLOCK is set as an errno
745 * rather than returning 0 (which would map to an EOF..)
746 *
747 * Notes: XXX We *should* have a clue here when a non-full buffer is arrived.
748 * and tag it so that we don't re-schedule another write until
749 * we have a CRLF.
750 */
751int
752rb_linebuf_flush(rb_fde_t *F, buf_head_t * bufhead)
753{
754 buf_line_t *bufline;
755 int retval;
756
55abcbb2
KB
757/*
758 * autoconf checks for this..but really just want to use it if we have a
db137867
AC
759 * native version even if libircd provides a fake version...
760 */
761#ifdef HAVE_WRITEV
762 if(!rb_fd_ssl(F))
763 {
764 rb_dlink_node *ptr;
765 int x = 0, y;
766 int xret;
767 static struct rb_iovec vec[RB_UIO_MAXIOV];
768
769 memset(vec, 0, sizeof(vec));
770 /* Check we actually have a first buffer */
771 if(bufhead->list.head == NULL)
772 {
773 /* nope, so we return none .. */
774 errno = EWOULDBLOCK;
775 return -1;
776 }
777
778 ptr = bufhead->list.head;
3202e249 779
db137867
AC
780 bufline = ptr->data;
781 if(!bufline->terminated)
782 {
783 errno = EWOULDBLOCK;
784 return -1;
785
786 }
787
39930c66
JT
788 vec[x].iov_base = bufline->buf + bufhead->writeofs;
789 vec[x++].iov_len = bufline->len - bufhead->writeofs;
790 ptr = ptr->next;
db137867
AC
791
792 do
793 {
794 if(ptr == NULL)
795 break;
796
797 bufline = ptr->data;
798 if(!bufline->terminated)
799 break;
3202e249 800
db137867
AC
801 vec[x].iov_base = bufline->buf;
802 vec[x].iov_len = bufline->len;
803 ptr = ptr->next;
804
3202e249
VY
805 }
806 while(++x < RB_UIO_MAXIOV);
db137867
AC
807
808 if(x == 0)
809 {
810 errno = EWOULDBLOCK;
811 return -1;
812 }
813
814 xret = retval = rb_writev(F, vec, x);
815 if(retval <= 0)
816 return retval;
817
818 ptr = bufhead->list.head;
819
820 for(y = 0; y < x; y++)
821 {
822 bufline = ptr->data;
823
39930c66 824 if(xret >= bufline->len - bufhead->writeofs)
db137867 825 {
39930c66 826 xret -= bufline->len - bufhead->writeofs;
db137867
AC
827 ptr = ptr->next;
828 rb_linebuf_done_line(bufhead, bufline, bufhead->list.head);
39930c66 829 bufhead->writeofs = 0;
db137867 830 }
3202e249 831 else
db137867 832 {
39930c66 833 bufhead->writeofs += xret;
db137867
AC
834 break;
835 }
db137867
AC
836 }
837
838 return retval;
839 }
3202e249
VY
840#endif
841
842 /* this is the non-writev case */
db137867 843
db137867
AC
844 /* Check we actually have a first buffer */
845 if(bufhead->list.head == NULL)
846 {
847 /* nope, so we return none .. */
848 errno = EWOULDBLOCK;
849 return -1;
850 }
851
852 bufline = bufhead->list.head->data;
853
854 /* And that its actually full .. */
855 if(!bufline->terminated)
856 {
857 errno = EWOULDBLOCK;
858 return -1;
859 }
860
db137867
AC
861 /* Now, try writing data */
862 retval = rb_write(F, bufline->buf + bufhead->writeofs, bufline->len - bufhead->writeofs);
863
864 if(retval <= 0)
865 return retval;
866
867 /* we've got data, so update the write offset */
868 bufhead->writeofs += retval;
869
870 /* if we've written everything *and* the CRLF, deallocate and update
871 bufhead */
872 if(bufhead->writeofs == bufline->len)
873 {
874 bufhead->writeofs = 0;
875 lrb_assert(bufhead->len >= 0);
876 rb_linebuf_done_line(bufhead, bufline, bufhead->list.head);
877 }
878
879 /* Return line length */
880 return retval;
881}
882
883
884
885/*
886 * count linebufs for stats z
887 */
888
889void
3202e249 890rb_count_rb_linebuf_memory(size_t *count, size_t *rb_linebuf_memory_used)
db137867 891{
db137867 892 rb_bh_usage(rb_linebuf_heap, count, NULL, rb_linebuf_memory_used, NULL);
db137867 893}