1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
|
/* $OpenBSD: options.c,v 1.78 2016/09/02 15:44:26 mpi Exp $ */
/* DHCP options parsing and reassembly. */
/*
* Copyright (c) 1995, 1996, 1997, 1998 The Internet Software Consortium.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of The Internet Software Consortium nor the names
* of its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE INTERNET SOFTWARE CONSORTIUM AND
* CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE INTERNET SOFTWARE CONSORTIUM OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* This software has been written for the Internet Software Consortium
* by Ted Lemon <mellon@fugue.com> in cooperation with Vixie
* Enterprises. To learn more about the Internet Software Consortium,
* see ``http://www.vix.com/isc''. To learn more about Vixie
* Enterprises, see ``http://www.vix.com''.
*/
#include <sys/queue.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <netinet/in.h>
#include <netinet/if_ether.h>
#include <ctype.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <vis.h>
#include "dhcp.h"
#include "dhcpd.h"
int parse_option_buffer(struct option_data *, unsigned char *, int);
int expand_search_domain_name(unsigned char *, size_t, int *, unsigned char *);
/*
* Parse options out of the specified buffer, storing addresses of
* option values in options. Return 0 if errors, 1 if not.
*/
int
parse_option_buffer(struct option_data *options, unsigned char *buffer,
int length)
{
unsigned char *s, *t, *end = buffer + length;
int len, code;
for (s = buffer; *s != DHO_END && s < end; ) {
code = s[0];
/* Pad options don't have a length - just skip them. */
if (code == DHO_PAD) {
s++;
continue;
}
/*
* All options other than DHO_PAD and DHO_END have a one-byte
* length field. It could be 0! Make sure that the length byte
* is present, and all the data is available.
*/
if (s + 1 < end) {
len = s[1];
if (s + 1 + len < end) {
; /* option data is all there. */
} else {
warning("option %s (%d) larger than buffer.",
dhcp_options[code].name, len);
return (0);
}
} else {
warning("option %s has no length field.",
dhcp_options[code].name);
return (0);
}
/*
* Strip trailing NULs from ascii ('t') options. They
* will be treated as DHO_PAD options. i.e. ignored. RFC 2132
* says "Options containing NVT ASCII data SHOULD NOT include
* a trailing NULL; however, the receiver of such options
* MUST be prepared to delete trailing nulls if they exist."
*/
if (dhcp_options[code].format[0] == 't') {
while (len > 0 && s[len + 1] == '\0')
len--;
}
/*
* If we haven't seen this option before, just make
* space for it and copy it there.
*/
if (!options[code].data) {
if (!(t = calloc(1, len + 1)))
error("Can't allocate storage for option %s.",
dhcp_options[code].name);
/*
* Copy and NUL-terminate the option (in case
* it's an ASCII string).
*/
memcpy(t, &s[2], len);
t[len] = 0;
options[code].len = len;
options[code].data = t;
} else {
/*
* If it's a repeat, concatenate it to whatever
* we last saw.
*/
t = calloc(1, len + options[code].len + 1);
if (!t)
error("Can't expand storage for option %s.",
dhcp_options[code].name);
memcpy(t, options[code].data, options[code].len);
memcpy(t + options[code].len, &s[2], len);
options[code].len += len;
t[options[code].len] = 0;
free(options[code].data);
options[code].data = t;
}
s += len + 2;
}
return (1);
}
/*
* Copy as many options as fit in buflen bytes of buf. Return the
* offset of the start of the last option copied. A caller can check
* to see if it's DHO_END to decide if all the options were copied.
*/
int
cons_options(struct interface_info *ifi, struct option_data *options)
{
struct client_state *client = ifi->client;
unsigned char *buf = client->bootrequest_packet.options;
int buflen = 576 - DHCP_FIXED_LEN;
int ix, incr, length, bufix, code, lastopt = -1;
memset(buf, 0, buflen);
memcpy(buf, DHCP_OPTIONS_COOKIE, 4);
if (options[DHO_DHCP_MESSAGE_TYPE].data) {
memcpy(&buf[4], DHCP_OPTIONS_MESSAGE_TYPE, 3);
buf[6] = options[DHO_DHCP_MESSAGE_TYPE].data[0];
bufix = 7;
} else
bufix = 4;
for (code = DHO_SUBNET_MASK; code < DHO_END; code++) {
if (!options[code].data || code == DHO_DHCP_MESSAGE_TYPE)
continue;
length = options[code].len;
if (bufix + length + 2*((length+254)/255) >= buflen)
return (lastopt);
lastopt = bufix;
ix = 0;
while (length) {
incr = length > 255 ? 255 : length;
buf[bufix++] = code;
buf[bufix++] = incr;
memcpy(buf + bufix, options[code].data + ix, incr);
length -= incr;
ix += incr;
bufix += incr;
}
}
if (bufix < buflen) {
buf[bufix] = DHO_END;
lastopt = bufix;
}
return (lastopt);
}
/*
* Use vis() to encode characters of src and append encoded characters onto
* dst. Also encode ", ', $, ` and \, to ensure resulting strings can be
* represented as '"' delimited strings and safely passed to scripts. Surround
* result with double quotes if emit_punct is true.
*/
int
pretty_print_string(unsigned char *dst, size_t dstlen, unsigned char *src,
size_t srclen, int emit_punct)
{
char visbuf[5];
unsigned char *origsrc = src;
int opcount = 0, total = 0;
if (emit_punct) {
opcount = snprintf(dst, dstlen, "\"");
if (opcount == -1)
return (-1);
total += opcount;
if (opcount >= dstlen)
goto done;
dstlen -= opcount;
dst += opcount;
}
for (; src < origsrc + srclen; src++) {
if (*src && strchr("\"'$`\\", *src))
opcount = snprintf(dst, dstlen, "\\%c", *src);
else {
vis(visbuf, *src, VIS_OCTAL, *src+1);
opcount = snprintf(dst, dstlen, "%s", visbuf);
}
if (opcount == -1)
return (-1);
total += opcount;
if (opcount >= dstlen)
goto done;
dstlen -= opcount;
dst += opcount;
}
if (emit_punct) {
opcount = snprintf(dst, dstlen, "\"");
if (opcount == -1)
return (-1);
total += opcount;
if (opcount >= dstlen)
goto done;
dstlen -= opcount;
dst += opcount;
}
done:
return (total);
}
/*
* Must special case *_CLASSLESS_* route options due to the variable size
* of the CIDR element in its CIA format.
*/
int
pretty_print_classless_routes(unsigned char *dst, size_t dstlen,
unsigned char *src, size_t srclen)
{
struct in_addr mask, gateway;
int opcount = 0, total = 0, bits, bytes;
char ntoabuf[INET_ADDRSTRLEN];
while (srclen && dstlen) {
bits = *src;
src++;
srclen--;
bytes = (bits + 7) / 8;
if (srclen < bytes || bytes > sizeof(mask.s_addr))
break;
memset(&mask, 0, sizeof(mask));
memcpy(&mask.s_addr, src, bytes);
src += bytes;
srclen -= bytes;
strlcpy(ntoabuf, inet_ntoa(mask), sizeof(ntoabuf));
if (srclen < sizeof(gateway.s_addr))
break;
memcpy(&gateway.s_addr, src, sizeof(gateway.s_addr));
src += sizeof(gateway.s_addr);
srclen -= sizeof(gateway.s_addr);
opcount = snprintf(dst, dstlen, "%s%s/%u %s",
total ? ", " : "", ntoabuf, bits,
inet_ntoa(gateway));
if (opcount == -1)
return (-1);
total += opcount;
if (opcount >= dstlen)
break;
dst += opcount;
dstlen -= opcount;
}
return (total);
}
int
expand_search_domain_name(unsigned char *src, size_t srclen, int *offset,
unsigned char *domain_search)
{
int domain_name_len, i, label_len, pointer, pointed_len;
char *cursor;
cursor = domain_search + strlen(domain_search);
domain_name_len = 0;
i = *offset;
while (i <= srclen) {
label_len = src[i];
if (label_len == 0) {
/*
* A zero-length label marks the end of this
* domain name.
*/
*offset = i + 1;
return (domain_name_len);
} else if (label_len & 0xC0) {
/* This is a pointer to another list of labels. */
if (i + 1 >= srclen) {
/* The pointer is truncated. */
warning("Truncated pointer in DHCP Domain "
"Search option.");
return (-1);
}
pointer = ((label_len & ~(0xC0)) << 8) + src[i + 1];
if (pointer >= *offset) {
/*
* The pointer must indicates a prior
* occurance.
*/
warning("Invalid forward pointer in DHCP "
"Domain Search option compression.");
return (-1);
}
pointed_len = expand_search_domain_name(src, srclen,
&pointer, domain_search);
domain_name_len += pointed_len;
*offset = i + 2;
return (domain_name_len);
}
if (i + label_len + 1 > srclen) {
warning("Truncated label in DHCP Domain Search "
"option.");
return (-1);
}
/*
* Update the domain name length with the length of the
* current label, plus a trailing dot ('.').
*/
domain_name_len += label_len + 1;
if (strlen(domain_search) + domain_name_len >=
DHCP_DOMAIN_SEARCH_LEN) {
warning("Domain search list too long.");
return (-1);
}
/* Copy the label found. */
memcpy(cursor, src + i + 1, label_len);
cursor[label_len] = '.';
/* Move cursor. */
i += label_len + 1;
cursor += label_len + 1;
}
warning("Truncated DHCP Domain Search option.");
return (-1);
}
/*
* Must special case DHO_DOMAIN_SEARCH because it is encoded as described
* in RFC 1035 section 4.1.4.
*/
int
pretty_print_domain_search(unsigned char *dst, size_t dstlen,
unsigned char *src, size_t srclen)
{
int offset, len, expanded_len, domains;
unsigned char *domain_search, *cursor;
domain_search = calloc(1, DHCP_DOMAIN_SEARCH_LEN);
if (domain_search == NULL)
error("Can't allocate storage for expanded domain-search\n");
/* Compute expanded length. */
expanded_len = len = 0;
domains = 0;
offset = 0;
while (offset < srclen) {
cursor = domain_search + strlen(domain_search);
if (domain_search[0]) {
*cursor = ' ';
expanded_len++;
}
len = expand_search_domain_name(src, srclen, &offset,
domain_search);
if (len == -1) {
free(domain_search);
return (-1);
}
domains++;
expanded_len += len;
if (domains > DHCP_DOMAIN_SEARCH_CNT) {
free(domain_search);
return (-1);
}
}
strlcat(dst, domain_search, dstlen);
free(domain_search);
return (0);
}
/*
* Format the specified option so that a human can easily read it.
*/
char *
pretty_print_option(unsigned int code, struct option_data *option,
int emit_punct)
{
static char optbuf[32768]; /* XXX */
int hunksize = 0, numhunk = -1, numelem = 0;
char fmtbuf[32], *op = optbuf;
int i, j, k, opleft = sizeof(optbuf);
unsigned char *data = option->data;
unsigned char *dp = data;
int len = option->len;
int opcount = 0;
struct in_addr foo;
char comma;
int32_t int32val;
u_int32_t uint32val;
u_int16_t uint16val;
memset(optbuf, 0, sizeof(optbuf));
/* Code should be between 0 and 255. */
if (code > 255) {
warning("pretty_print_option: bad code %d", code);
goto done;
}
if (emit_punct)
comma = ',';
else
comma = ' ';
/* Handle the princess class options with weirdo formats. */
switch (code) {
case DHO_CLASSLESS_STATIC_ROUTES:
case DHO_CLASSLESS_MS_STATIC_ROUTES:
opcount = pretty_print_classless_routes(op, opleft, dp, len);
if (opcount >= opleft || opcount == -1)
goto toobig;
goto done;
default:
break;
}
/* Figure out the size of the data. */
for (i = 0; dhcp_options[code].format[i]; i++) {
if (!numhunk) {
warning("%s: Excess information in format string: %s",
dhcp_options[code].name,
&(dhcp_options[code].format[i]));
goto done;
}
numelem++;
fmtbuf[i] = dhcp_options[code].format[i];
switch (dhcp_options[code].format[i]) {
case 'A':
--numelem;
fmtbuf[i] = 0;
numhunk = 0;
if (hunksize == 0) {
warning("%s: no size indicator before A"
" in format string: %s",
dhcp_options[code].name,
dhcp_options[code].format);
goto done;
}
break;
case 'X':
for (k = 0; k < len; k++)
if (!isascii(data[k]) ||
!isprint(data[k]))
break;
if (k == len) {
fmtbuf[i] = 't';
numhunk = -2;
} else {
hunksize++;
comma = ':';
numhunk = 0;
}
fmtbuf[i + 1] = 0;
break;
case 't':
fmtbuf[i + 1] = 0;
numhunk = -2;
break;
case 'I':
case 'l':
case 'L':
hunksize += 4;
break;
case 'S':
hunksize += 2;
break;
case 'B':
case 'f':
hunksize++;
break;
case 'e':
break;
default:
warning("%s: garbage in format string: %s",
dhcp_options[code].name,
&(dhcp_options[code].format[i]));
goto done;
}
}
/* Check for too few bytes. */
if (hunksize > len) {
warning("%s: expecting at least %d bytes; got %d",
dhcp_options[code].name, hunksize, len);
goto done;
}
/* Check for too many bytes. */
if (numhunk == -1 && hunksize < len) {
warning("%s: expecting only %d bytes: got %d",
dhcp_options[code].name, hunksize, len);
goto done;
}
/* If this is an array, compute its size. */
if (!numhunk)
numhunk = len / hunksize;
/* See if we got an exact number of hunks. */
if (numhunk > 0 && numhunk * hunksize != len) {
warning("%s: expecting %d bytes: got %d",
dhcp_options[code].name, numhunk * hunksize, len);
goto done;
}
/* A one-hunk array prints the same as a single hunk. */
if (numhunk < 0)
numhunk = 1;
/* Cycle through the array (or hunk) printing the data. */
for (i = 0; i < numhunk; i++) {
for (j = 0; j < numelem; j++) {
switch (fmtbuf[j]) {
case 't':
opcount = pretty_print_string(op, opleft,
dp, len, emit_punct);
break;
case 'I':
memcpy(&foo.s_addr, dp, sizeof(foo.s_addr));
opcount = snprintf(op, opleft, "%s",
inet_ntoa(foo));
dp += sizeof(foo.s_addr);
break;
case 'l':
memcpy(&int32val, dp, sizeof(int32val));
opcount = snprintf(op, opleft, "%d",
ntohl(int32val));
dp += sizeof(int32val);
break;
case 'L':
memcpy(&uint32val, dp, sizeof(uint32val));
opcount = snprintf(op, opleft, "%u",
ntohl(uint32val));
dp += sizeof(uint32val);
break;
case 'S':
memcpy(&uint16val, dp, sizeof(uint16val));
opcount = snprintf(op, opleft, "%hu",
ntohs(uint16val));
dp += sizeof(uint16val);
break;
case 'B':
opcount = snprintf(op, opleft, "%u", *dp);
dp++;
break;
case 'X':
opcount = snprintf(op, opleft, "%x", *dp);
dp++;
break;
case 'f':
opcount = snprintf(op, opleft, "%s",
*dp ? "true" : "false");
dp++;
break;
default:
warning("Unexpected format code %c", fmtbuf[j]);
goto toobig;
}
if (opcount >= opleft || opcount == -1)
goto toobig;
opleft -= opcount;
op += opcount;
if (j + 1 < numelem && comma != ':') {
opcount = snprintf(op, opleft, " ");
if (opcount >= opleft || opcount == -1)
goto toobig;
opleft -= opcount;
op += opcount;
}
}
if (i + 1 < numhunk) {
opcount = snprintf(op, opleft, "%c", comma);
if (opcount >= opleft || opcount == -1)
goto toobig;
opleft -= opcount;
op += opcount;
}
}
done:
return (optbuf);
toobig:
memset(optbuf, 0, sizeof(optbuf));
return (optbuf);
}
void
do_packet(struct interface_info *ifi, unsigned int from_port,
struct in_addr from, struct ether_addr *hfrom)
{
struct client_state *client = ifi->client;
struct dhcp_packet *packet = &client->packet;
struct option_data options[256];
struct reject_elem *ap;
void (*handler)(struct interface_info *, struct in_addr,
struct option_data *, char *);
char *type, *info;
int i, rslt, options_valid = 1;
if (packet->hlen != ETHER_ADDR_LEN) {
#ifdef DEBUG
debug("Discarding packet with hlen != %s (%u)",
ifi->name, packet->hlen);
#endif
return;
} else if (memcmp(&ifi->hw_address, packet->chaddr,
sizeof(ifi->hw_address))) {
#ifdef DEBUG
debug("Discarding packet with chaddr != %s (%s)", ifi->name,
ether_ntoa((struct ether_addr *)packet->chaddr));
#endif
return;
}
if (client->xid != client->packet.xid) {
#ifdef DEBUG
debug("Discarding packet with XID != %u (%u)", client->xid,
client->packet.xid);
#endif
return;
}
TAILQ_FOREACH(ap, &config->reject_list, next)
if (from.s_addr == ap->addr.s_addr) {
#ifdef DEBUG
debug("Discarding packet from address on reject list "
"(%s)", inet_ntoa(from));
#endif
return;
}
memset(options, 0, sizeof(options));
if (memcmp(&packet->options, DHCP_OPTIONS_COOKIE, 4) == 0) {
/* Parse the BOOTP/DHCP options field. */
options_valid = parse_option_buffer(options,
&packet->options[4], sizeof(packet->options) - 4);
/* Only DHCP packets have overload areas for options. */
if (options_valid &&
options[DHO_DHCP_MESSAGE_TYPE].data &&
options[DHO_DHCP_OPTION_OVERLOAD].data) {
if (options[DHO_DHCP_OPTION_OVERLOAD].data[0] & 1)
options_valid = parse_option_buffer(options,
(unsigned char *)packet->file,
sizeof(packet->file));
if (options_valid &&
options[DHO_DHCP_OPTION_OVERLOAD].data[0] & 2)
options_valid = parse_option_buffer(options,
(unsigned char *)packet->sname,
sizeof(packet->sname));
}
}
type = "<unknown>";
handler = NULL;
if (options[DHO_DHCP_MESSAGE_TYPE].data) {
/* Always try a DHCP packet, even if a bad option was seen. */
switch (options[DHO_DHCP_MESSAGE_TYPE].data[0]) {
case DHCPOFFER:
handler = dhcpoffer;
type = "DHCPOFFER";
break;
case DHCPNAK:
handler = dhcpnak;
type = "DHCPNACK";
break;
case DHCPACK:
handler = dhcpack;
type = "DHCPACK";
break;
default:
#ifdef DEBUG
debug("Discarding DHCP packet of unknown type (%d)",
options[DHO_DHCP_MESSAGE_TYPE].data[0]);
#endif
break;
}
} else if (options_valid && packet->op == BOOTREPLY) {
handler = dhcpoffer;
type = "BOOTREPLY";
} else {
#ifdef DEBUG
debug("Discarding packet which is neither DHCP nor BOOTP");
#endif
}
rslt = asprintf(&info, "%s from %s (%s)", type, inet_ntoa(from),
ether_ntoa(hfrom));
if (rslt == -1)
error("no memory for info string");
if (handler)
(*handler)(ifi, from, options, info);
free(info);
for (i = 0; i < 256; i++)
free(options[i].data);
}
|