-
Notifications
You must be signed in to change notification settings - Fork 0
/
thttpd-no.s
executable file
·4348 lines (4348 loc) · 72.6 KB
/
thttpd-no.s
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
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.file "thttpd.c"
.text
.p2align 4,,15
.type handle_hup, @function
handle_hup:
.LFB4:
.cfi_startproc
movl $1, got_hup(%rip)
ret
.cfi_endproc
.LFE4:
.size handle_hup, .-handle_hup
.section .rodata.str1.8,"aMS",@progbits,1
.align 8
.LC0:
.string " thttpd - %ld connections (%g/sec), %d max simultaneous, %lld bytes (%g/sec), %d httpd_conns allocated"
.text
.p2align 4,,15
.type thttpd_logstats, @function
thttpd_logstats:
.LFB35:
.cfi_startproc
subq $8, %rsp
.cfi_def_cfa_offset 16
testq %rdi, %rdi
jle .L3
movq stats_bytes(%rip), %r8
pxor %xmm2, %xmm2
movq stats_connections(%rip), %rdx
pxor %xmm1, %xmm1
pxor %xmm0, %xmm0
movl httpd_conn_count(%rip), %r9d
cvtsi2ssq %rdi, %xmm2
movl stats_simultaneous(%rip), %ecx
movl $.LC0, %esi
movl $6, %edi
cvtsi2ssq %r8, %xmm1
movl $2, %eax
cvtsi2ssq %rdx, %xmm0
divss %xmm2, %xmm1
divss %xmm2, %xmm0
cvtss2sd %xmm1, %xmm1
cvtss2sd %xmm0, %xmm0
call syslog
.L3:
movq $0, stats_connections(%rip)
movq $0, stats_bytes(%rip)
movl $0, stats_simultaneous(%rip)
addq $8, %rsp
.cfi_def_cfa_offset 8
ret
.cfi_endproc
.LFE35:
.size thttpd_logstats, .-thttpd_logstats
.section .rodata.str1.8
.align 8
.LC1:
.string "throttle #%d '%.80s' rate %ld greatly exceeding limit %ld; %d sending"
.align 8
.LC2:
.string "throttle #%d '%.80s' rate %ld exceeding limit %ld; %d sending"
.align 8
.LC3:
.string "throttle #%d '%.80s' rate %ld lower than minimum %ld; %d sending"
.text
.p2align 4,,15
.type update_throttles, @function
update_throttles:
.LFB25:
.cfi_startproc
movl numthrottles(%rip), %r8d
pushq %r12
.cfi_def_cfa_offset 16
.cfi_offset 12, -16
movabsq $6148914691236517206, %r12
pushq %rbp
.cfi_def_cfa_offset 24
.cfi_offset 6, -24
xorl %ebp, %ebp
pushq %rbx
.cfi_def_cfa_offset 32
.cfi_offset 3, -32
xorl %ebx, %ebx
testl %r8d, %r8d
jg .L25
jmp .L14
.p2align 4,,10
.p2align 3
.L35:
subq $8, %rsp
.cfi_def_cfa_offset 40
movq (%rcx), %rcx
movl %ebx, %edx
pushq %rax
.cfi_def_cfa_offset 48
movl $.LC1, %esi
movl $5, %edi
.L32:
xorl %eax, %eax
call syslog
movq %rbp, %rcx
addq throttles(%rip), %rcx
popq %rsi
.cfi_def_cfa_offset 40
popq %rdi
.cfi_def_cfa_offset 32
movq 24(%rcx), %r8
.L10:
movq 16(%rcx), %r9
cmpq %r8, %r9
jle .L11
movl 40(%rcx), %eax
testl %eax, %eax
je .L11
subq $8, %rsp
.cfi_def_cfa_offset 40
movq (%rcx), %rcx
movl %ebx, %edx
pushq %rax
.cfi_def_cfa_offset 48
movl $.LC3, %esi
xorl %eax, %eax
movl $5, %edi
call syslog
popq %rax
.cfi_def_cfa_offset 40
popq %rdx
.cfi_def_cfa_offset 32
.p2align 4,,10
.p2align 3
.L11:
addl $1, %ebx
addq $48, %rbp
cmpl %ebx, numthrottles(%rip)
jle .L14
.L25:
movq %rbp, %rcx
addq throttles(%rip), %rcx
movq 32(%rcx), %rdx
movq 24(%rcx), %rsi
movq 8(%rcx), %r9
movq $0, 32(%rcx)
movq %rdx, %rax
shrq $63, %rax
addq %rdx, %rax
sarq %rax
leaq (%rax,%rsi,2), %rsi
movq %rsi, %rax
sarq $63, %rsi
imulq %r12
subq %rsi, %rdx
cmpq %r9, %rdx
movq %rdx, %r8
movq %rdx, 24(%rcx)
jle .L10
movl 40(%rcx), %eax
testl %eax, %eax
je .L11
leaq (%r9,%r9), %rdx
cmpq %rdx, %r8
jg .L35
subq $8, %rsp
.cfi_remember_state
.cfi_def_cfa_offset 40
movq (%rcx), %rcx
movl %ebx, %edx
pushq %rax
.cfi_def_cfa_offset 48
movl $.LC2, %esi
movl $6, %edi
jmp .L32
.p2align 4,,10
.p2align 3
.L14:
.cfi_restore_state
movl max_connects(%rip), %eax
testl %eax, %eax
jle .L6
subl $1, %eax
movq connects(%rip), %rsi
movq throttles(%rip), %r9
leaq 9(%rax,%rax,8), %r10
movq $-1, %r11
salq $4, %r10
addq %rsi, %r10
jmp .L16
.p2align 4,,10
.p2align 3
.L17:
addq $144, %rsi
cmpq %rsi, %r10
je .L6
.L16:
movl (%rsi), %eax
subl $2, %eax
cmpl $1, %eax
ja .L17
movl 56(%rsi), %eax
movq %r11, 64(%rsi)
testl %eax, %eax
jle .L17
subl $1, %eax
leaq 16(%rsi), %rcx
movq %r11, %rdi
leaq 20(%rsi,%rax,4), %r8
jmp .L20
.p2align 4,,10
.p2align 3
.L36:
movq 64(%rsi), %rdi
.L20:
movslq (%rcx), %rax
leaq (%rax,%rax,2), %rax
salq $4, %rax
addq %r9, %rax
movslq 40(%rax), %rbx
movq 8(%rax), %rax
cqto
idivq %rbx
cmpq $-1, %rdi
je .L33
cmpq %rdi, %rax
cmovg %rdi, %rax
.L33:
addq $4, %rcx
movq %rax, 64(%rsi)
cmpq %r8, %rcx
jne .L36
addq $144, %rsi
cmpq %rsi, %r10
jne .L16
.L6:
popq %rbx
.cfi_def_cfa_offset 24
popq %rbp
.cfi_def_cfa_offset 16
popq %r12
.cfi_def_cfa_offset 8
ret
.cfi_endproc
.LFE25:
.size update_throttles, .-update_throttles
.section .rodata.str1.8
.align 8
.LC4:
.string "%s: no value required for %s option\n"
.text
.p2align 4,,15
.type no_value_required, @function
no_value_required:
.LFB14:
.cfi_startproc
testq %rsi, %rsi
jne .L42
rep ret
.L42:
subq $8, %rsp
.cfi_def_cfa_offset 16
movq %rdi, %rcx
movq argv0(%rip), %rdx
movq stderr(%rip), %rdi
movl $.LC4, %esi
xorl %eax, %eax
call fprintf
movl $1, %edi
call exit
.cfi_endproc
.LFE14:
.size no_value_required, .-no_value_required
.section .rodata.str1.8
.align 8
.LC5:
.string "%s: value required for %s option\n"
.text
.p2align 4,,15
.type value_required, @function
value_required:
.LFB13:
.cfi_startproc
testq %rsi, %rsi
je .L48
rep ret
.L48:
subq $8, %rsp
.cfi_def_cfa_offset 16
movq %rdi, %rcx
movq argv0(%rip), %rdx
movq stderr(%rip), %rdi
movl $.LC5, %esi
xorl %eax, %eax
call fprintf
movl $1, %edi
call exit
.cfi_endproc
.LFE13:
.size value_required, .-value_required
.section .rodata.str1.8
.align 8
.LC6:
.string "usage: %s [-C configfile] [-p port] [-d dir] [-r|-nor] [-dd data_dir] [-s|-nos] [-v|-nov] [-g|-nog] [-u user] [-c cgipat] [-t throttles] [-h host] [-l logfile] [-i pidfile] [-T charset] [-P P3P] [-M maxage] [-V] [-D]\n"
.section .text.unlikely,"ax",@progbits
.type usage, @function
usage:
.LFB11:
.cfi_startproc
subq $8, %rsp
.cfi_def_cfa_offset 16
movq stderr(%rip), %rdi
movq argv0(%rip), %rdx
movl $.LC6, %esi
xorl %eax, %eax
call fprintf
movl $1, %edi
call exit
.cfi_endproc
.LFE11:
.size usage, .-usage
.text
.p2align 4,,15
.type wakeup_connection, @function
wakeup_connection:
.LFB30:
.cfi_startproc
cmpl $3, (%rdi)
movq $0, 96(%rdi)
je .L53
rep ret
.p2align 4,,10
.p2align 3
.L53:
movq 8(%rdi), %rax
movl $2, (%rdi)
movq %rdi, %rsi
movl $1, %edx
movl 704(%rax), %eax
movl %eax, %edi
jmp fdwatch_add_fd
.cfi_endproc
.LFE30:
.size wakeup_connection, .-wakeup_connection
.section .rodata.str1.8
.align 8
.LC7:
.string "up %ld seconds, stats for %ld seconds:"
.text
.p2align 4,,15
.type logstats, @function
logstats:
.LFB34:
.cfi_startproc
pushq %rbx
.cfi_def_cfa_offset 16
.cfi_offset 3, -16
subq $16, %rsp
.cfi_def_cfa_offset 32
testq %rdi, %rdi
je .L58
.L55:
movq (%rdi), %rax
movl $1, %ecx
movl $.LC7, %esi
movl $6, %edi
movq %rax, %rdx
movq %rax, %rbx
subq start_time(%rip), %rdx
subq stats_time(%rip), %rbx
movq %rax, stats_time(%rip)
cmove %rcx, %rbx
xorl %eax, %eax
movq %rbx, %rcx
call syslog
movq %rbx, %rdi
call thttpd_logstats
movq %rbx, %rdi
call httpd_logstats
movq %rbx, %rdi
call mmc_logstats
movq %rbx, %rdi
call fdwatch_logstats
movq %rbx, %rdi
call tmr_logstats
addq $16, %rsp
.cfi_remember_state
.cfi_def_cfa_offset 16
popq %rbx
.cfi_def_cfa_offset 8
ret
.p2align 4,,10
.p2align 3
.L58:
.cfi_restore_state
movq %rsp, %rdi
xorl %esi, %esi
call gettimeofday
movq %rsp, %rdi
jmp .L55
.cfi_endproc
.LFE34:
.size logstats, .-logstats
.p2align 4,,15
.type show_stats, @function
show_stats:
.LFB33:
.cfi_startproc
movq %rsi, %rdi
jmp logstats
.cfi_endproc
.LFE33:
.size show_stats, .-show_stats
.p2align 4,,15
.type handle_usr2, @function
handle_usr2:
.LFB6:
.cfi_startproc
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
pushq %rbx
.cfi_def_cfa_offset 24
.cfi_offset 3, -24
subq $8, %rsp
.cfi_def_cfa_offset 32
call __errno_location
movl (%rax), %ebp
movq %rax, %rbx
xorl %edi, %edi
call logstats
movl %ebp, (%rbx)
addq $8, %rsp
.cfi_def_cfa_offset 24
popq %rbx
.cfi_def_cfa_offset 16
popq %rbp
.cfi_def_cfa_offset 8
ret
.cfi_endproc
.LFE6:
.size handle_usr2, .-handle_usr2
.p2align 4,,15
.type occasional, @function
occasional:
.LFB32:
.cfi_startproc
subq $8, %rsp
.cfi_def_cfa_offset 16
movq %rsi, %rdi
call mmc_cleanup
call tmr_cleanup
movl $1, watchdog_flag(%rip)
addq $8, %rsp
.cfi_def_cfa_offset 8
ret
.cfi_endproc
.LFE32:
.size occasional, .-occasional
.section .rodata.str1.1,"aMS",@progbits,1
.LC8:
.string "/tmp"
.text
.p2align 4,,15
.type handle_alrm, @function
handle_alrm:
.LFB7:
.cfi_startproc
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
pushq %rbx
.cfi_def_cfa_offset 24
.cfi_offset 3, -24
subq $8, %rsp
.cfi_def_cfa_offset 32
call __errno_location
movq %rax, %rbx
movl (%rax), %ebp
movl watchdog_flag(%rip), %eax
testl %eax, %eax
je .L67
movl $360, %edi
movl $0, watchdog_flag(%rip)
call alarm
movl %ebp, (%rbx)
addq $8, %rsp
.cfi_remember_state
.cfi_def_cfa_offset 24
popq %rbx
.cfi_def_cfa_offset 16
popq %rbp
.cfi_def_cfa_offset 8
ret
.L67:
.cfi_restore_state
movl $.LC8, %edi
call chdir
call abort
.cfi_endproc
.LFE7:
.size handle_alrm, .-handle_alrm
.section .rodata.str1.1
.LC9:
.string "child wait - %m"
.text
.p2align 4,,15
.type handle_chld, @function
handle_chld:
.LFB3:
.cfi_startproc
pushq %r12
.cfi_def_cfa_offset 16
.cfi_offset 12, -16
pushq %rbp
.cfi_def_cfa_offset 24
.cfi_offset 6, -24
xorl %ebp, %ebp
pushq %rbx
.cfi_def_cfa_offset 32
.cfi_offset 3, -32
subq $16, %rsp
.cfi_def_cfa_offset 48
call __errno_location
movl (%rax), %r12d
movq %rax, %rbx
.p2align 4,,10
.p2align 3
.L69:
leaq 12(%rsp), %rsi
movl $1, %edx
movl $-1, %edi
call waitpid
testl %eax, %eax
je .L70
js .L85
movq hs(%rip), %rdx
testq %rdx, %rdx
je .L69
movl 36(%rdx), %eax
subl $1, %eax
cmovs %ebp, %eax
movl %eax, 36(%rdx)
jmp .L69
.p2align 4,,10
.p2align 3
.L85:
movl (%rbx), %eax
cmpl $4, %eax
je .L69
cmpl $11, %eax
je .L69
cmpl $10, %eax
je .L70
movl $.LC9, %esi
movl $3, %edi
xorl %eax, %eax
call syslog
.L70:
movl %r12d, (%rbx)
addq $16, %rsp
.cfi_def_cfa_offset 32
popq %rbx
.cfi_def_cfa_offset 24
popq %rbp
.cfi_def_cfa_offset 16
popq %r12
.cfi_def_cfa_offset 8
ret
.cfi_endproc
.LFE3:
.size handle_chld, .-handle_chld
.section .rodata.str1.8
.align 8
.LC10:
.string "out of memory copying a string"
.align 8
.LC11:
.string "%s: out of memory copying a string\n"
.text
.p2align 4,,15
.type e_strdup, @function
e_strdup:
.LFB15:
.cfi_startproc
subq $8, %rsp
.cfi_def_cfa_offset 16
call strdup
testq %rax, %rax
je .L89
addq $8, %rsp
.cfi_remember_state
.cfi_def_cfa_offset 8
ret
.L89:
.cfi_restore_state
movl $.LC10, %esi
movl $2, %edi
call syslog
movq stderr(%rip), %rdi
movq argv0(%rip), %rdx
movl $.LC11, %esi
xorl %eax, %eax
call fprintf
movl $1, %edi
call exit
.cfi_endproc
.LFE15:
.size e_strdup, .-e_strdup
.section .rodata.str1.1
.LC12:
.string "r"
.LC13:
.string " \t\n\r"
.LC14:
.string "debug"
.LC15:
.string "port"
.LC16:
.string "dir"
.LC17:
.string "chroot"
.LC18:
.string "nochroot"
.LC19:
.string "data_dir"
.LC20:
.string "symlink"
.LC21:
.string "nosymlink"
.LC22:
.string "symlinks"
.LC23:
.string "nosymlinks"
.LC24:
.string "user"
.LC25:
.string "cgipat"
.LC26:
.string "cgilimit"
.LC27:
.string "urlpat"
.LC28:
.string "noemptyreferers"
.LC29:
.string "localpat"
.LC30:
.string "throttles"
.LC31:
.string "host"
.LC32:
.string "logfile"
.LC33:
.string "vhost"
.LC34:
.string "novhost"
.LC35:
.string "globalpasswd"
.LC36:
.string "noglobalpasswd"
.LC37:
.string "pidfile"
.LC38:
.string "charset"
.LC39:
.string "p3p"
.LC40:
.string "max_age"
.section .rodata.str1.8
.align 8
.LC41:
.string "%s: unknown config option '%s'\n"
.text
.p2align 4,,15
.type read_config, @function
read_config:
.LFB12:
.cfi_startproc
pushq %r14
.cfi_def_cfa_offset 16
.cfi_offset 14, -16
pushq %r13
.cfi_def_cfa_offset 24
.cfi_offset 13, -24
movl $.LC12, %esi
pushq %r12
.cfi_def_cfa_offset 32
.cfi_offset 12, -32
pushq %rbp
.cfi_def_cfa_offset 40
.cfi_offset 6, -40
pushq %rbx
.cfi_def_cfa_offset 48
.cfi_offset 3, -48
movq %rdi, %rbx
subq $112, %rsp
.cfi_def_cfa_offset 160
call fopen
testq %rax, %rax
je .L137
movq %rax, %r12
movabsq $4294977024, %r14
.L91:
movq %r12, %rdx
movl $1000, %esi
movq %rsp, %rdi
call fgets
testq %rax, %rax
je .L141
movl $35, %esi
movq %rsp, %rdi
call strchr
testq %rax, %rax
je .L92
movb $0, (%rax)
.L92:
movl $.LC13, %esi
movq %rsp, %rdi
call strspn
leaq (%rsp,%rax), %rbp
cmpb $0, 0(%rbp)
jne .L133
jmp .L91
.p2align 4,,10
.p2align 3
.L94:
movl $61, %esi
movq %rbp, %rdi
call strchr
testq %rax, %rax
je .L128
leaq 1(%rax), %r13
movb $0, (%rax)
.L96:
movl $.LC14, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L142
movl $.LC15, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L143
movl $.LC16, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L144
movl $.LC17, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L145
movl $.LC18, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L146
movl $.LC19, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L147
movl $.LC20, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L139
movl $.LC21, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L140
movl $.LC22, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L139
movl $.LC23, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L140
movl $.LC24, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L148
movl $.LC25, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L149
movl $.LC26, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L150
movl $.LC27, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L151
movl $.LC28, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L152
movl $.LC29, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L153
movl $.LC30, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L154
movl $.LC31, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L155
movl $.LC32, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L156
movl $.LC33, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L157
movl $.LC34, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L158
movl $.LC35, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L159
movl $.LC36, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L160
movl $.LC37, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L161
movl $.LC38, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L162
movl $.LC39, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
je .L163
movl $.LC40, %esi
movq %rbp, %rdi
call strcasecmp
testl %eax, %eax
jne .L124
movq %r13, %rsi
movq %rbp, %rdi
call value_required
movq %r13, %rdi
call atoi
movl %eax, max_age(%rip)
.p2align 4,,10
.p2align 3
.L98:
movl $.LC13, %esi
movq %rbx, %rdi
call strspn
leaq (%rbx,%rax), %rbp
cmpb $0, 0(%rbp)
je .L91
.L133:
movl $.LC13, %esi
movq %rbp, %rdi
call strcspn
leaq 0(%rbp,%rax), %rbx
movzbl (%rbx), %eax
cmpb $32, %al
ja .L94
btq %rax, %r14
jnc .L94
.p2align 4,,10
.p2align 3
.L95:
addq $1, %rbx
movzbl (%rbx), %edx
movb $0, -1(%rbx)
cmpb $32, %dl
ja .L94
btq %rdx, %r14
jc .L95
jmp .L94
.L142:
movq %r13, %rsi
movq %rbp, %rdi
call no_value_required
movl $1, debug(%rip)
jmp .L98
.L143:
movq %r13, %rsi
movq %rbp, %rdi
call value_required
movq %r13, %rdi
call atoi
movw %ax, port(%rip)
jmp .L98
.L128:
xorl %r13d, %r13d
jmp .L96
.L144:
movq %r13, %rsi
movq %rbp, %rdi
call value_required
movq %r13, %rdi
call e_strdup
movq %rax, dir(%rip)
jmp .L98
.L145:
movq %r13, %rsi
movq %rbp, %rdi
call no_value_required
movl $1, do_chroot(%rip)
movl $1, no_symlink_check(%rip)
jmp .L98
.L146:
movq %r13, %rsi
movq %rbp, %rdi
call no_value_required
movl $0, do_chroot(%rip)
movl $0, no_symlink_check(%rip)
jmp .L98
.L139:
movq %r13, %rsi
movq %rbp, %rdi
call no_value_required
movl $0, no_symlink_check(%rip)
jmp .L98
.L147:
movq %r13, %rsi
movq %rbp, %rdi
call value_required
movq %r13, %rdi
call e_strdup
movq %rax, data_dir(%rip)
jmp .L98
.L140:
movq %r13, %rsi
movq %rbp, %rdi
call no_value_required
movl $1, no_symlink_check(%rip)
jmp .L98
.L148:
movq %r13, %rsi
movq %rbp, %rdi
call value_required
movq %r13, %rdi
call e_strdup
movq %rax, user(%rip)
jmp .L98
.L150:
movq %r13, %rsi
movq %rbp, %rdi
call value_required
movq %r13, %rdi
call atoi
movl %eax, cgi_limit(%rip)
jmp .L98
.L149:
movq %r13, %rsi
movq %rbp, %rdi
call value_required
movq %r13, %rdi
call e_strdup
movq %rax, cgi_pattern(%rip)
jmp .L98
.L141:
movq %r12, %rdi
call fclose
addq $112, %rsp
.cfi_remember_state
.cfi_def_cfa_offset 48
popq %rbx
.cfi_def_cfa_offset 40
popq %rbp
.cfi_def_cfa_offset 32
popq %r12
.cfi_def_cfa_offset 24
popq %r13
.cfi_def_cfa_offset 16
popq %r14
.cfi_def_cfa_offset 8