summaryrefslogtreecommitdiffstats
path: root/net/frp/files/frpc.init
blob: 62c2062ff835445d3adf1ccb6db56b06c1418361 (plain)
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
1001
1002
1003
#!/bin/sh /etc/rc.common

START=99
USE_PROCD=1

NAME=frpc
PROG=/usr/bin/$NAME
CONF_FILE=/var/etc/$NAME.toml

_err() {
	echo "$*" >&2
	logger -p daemon.err -t "$NAME" "$*"
}

_trim() {
	printf '%s' "$1" | sed 's/^[[:space:]]*//;s/[[:space:]]*$//'
}

_toml_escape() {
	printf '%s' "$1" | sed 's/\\/\\\\/g; s/"/\\"/g'
}

_toml_quote() {
	printf '"%s"' "$(_toml_escape "$1")"
}

_toml_key_quote() {
	_toml_quote "$1"
}

_toml_bool() {
	local v
	v="$(printf '%s' "$1" | tr 'A-Z' 'a-z')"

	case "$v" in
		1|true|yes|on|enabled)
			printf 'true'
		;;
		0|false|no|off|disabled)
			printf 'false'
		;;
		*)
			printf 'false'
		;;
	esac
}

_TOML_ERR=0
_ALLOW_UNSAFE_TOKEN_SOURCE_EXEC=0

_is_uinteger() {
	case "$1" in
		''|*[!0-9]*)
			return 1
		;;
	esac

	return 0
}

_is_integer() {
	local value="$1"

	case "$value" in
		+*|-*)
			value="${value#?}"
		;;
	esac

	_is_uinteger "$value"
}

_is_port_value() {
	_is_uinteger "$1" || return 1
	[ "$1" -ge 1 ] 2>/dev/null && [ "$1" -le 65535 ] 2>/dev/null
}

_is_port_or_zero_value() {
	_is_uinteger "$1" || return 1
	[ "$1" -ge 0 ] 2>/dev/null && [ "$1" -le 65535 ] 2>/dev/null
}

_is_negative_integer() {
	local value

	case "$1" in
		-*)
			value="${1#-}"
			_is_uinteger "$value" && [ "$value" -gt 0 ] 2>/dev/null
		;;
		*)
			return 1
		;;
	esac
}

_is_visitor_bind_port_value() {
	_is_negative_integer "$1" && return 0
	_is_port_value "$1"
}

_toml_line() {
	local key="$1"
	local value="$2"
	local type="$3"

	[ -z "$value" ] && return 0

	case "$type" in
		bool)
			printf '%s = %s\n' "$key" "$(_toml_bool "$value")"
		;;
		int|integer|number)
			if ! _is_integer "$value"; then
				_err "invalid integer for $key: $value"
				_TOML_ERR=1
				return 1
			fi

			printf '%s = %s\n' "$key" "$value"
		;;
		port)
			if ! _is_port_value "$value"; then
				_err "invalid port for $key: $value"
				_TOML_ERR=1
				return 1
			fi

			printf '%s = %s\n' "$key" "$value"
		;;
		port0)
			if ! _is_port_or_zero_value "$value"; then
				_err "invalid port for $key: $value"
				_TOML_ERR=1
				return 1
			fi

			printf '%s = %s\n' "$key" "$value"
		;;
		visitor_bind_port)
			if ! _is_visitor_bind_port_value "$value"; then
				_err "invalid visitor bind port for $key: $value"
				_TOML_ERR=1
				return 1
			fi

			printf '%s = %s\n' "$key" "$value"
		;;
		*)
			printf '%s = %s\n' "$key" "$(_toml_quote "$value")"
		;;
	esac
}

_emit_opt() {
	local section="$1"
	local option="$2"
	local toml_key="$3"
	local type="$4"
	local value

	config_get value "$section" "$option"
	_toml_line "$toml_key" "$value" "$type"
}

_TOML_ARRAY=
_TOML_HAS_LIST=0

_toml_array_add() {
	local item="$1"

	item="$(_trim "$item")"
	[ -z "$item" ] && return 0

	if [ -n "$_TOML_ARRAY" ]; then
		_TOML_ARRAY="${_TOML_ARRAY}, "
	fi

	_TOML_ARRAY="${_TOML_ARRAY}$(_toml_quote "$item")"
}

_collect_array_item() {
	_TOML_HAS_LIST=1
	_toml_array_add "$1"
}

_collect_array_option() {
	local section="$1"
	local option="$2"
	local scalar item

	_TOML_ARRAY=
	_TOML_HAS_LIST=0

	config_list_foreach "$section" "$option" _collect_array_item

	if [ "$_TOML_HAS_LIST" = "0" ]; then
		config_get scalar "$section" "$option"

		while [ -n "$scalar" ]; do
			case "$scalar" in
				*,*)
					item="${scalar%%,*}"
					scalar="${scalar#*,}"
				;;
				*)
					item="$scalar"
					scalar=
				;;
			esac

			_toml_array_add "$item"
		done
	fi

	return 0
}

_emit_array_opt() {
	local section="$1"
	local option="$2"
	local toml_key="$3"

	_collect_array_option "$section" "$option"

	[ -n "$_TOML_ARRAY" ] || return 0
	printf '%s = [%s]\n' "$toml_key" "$_TOML_ARRAY"
}

_emit_kv_pair() {
	local prefix="$1"
	local line="$2"
	local value_type="$3"
	local key value toml_key

	case "$line" in
		*=*)
			key="${line%%=*}"
			value="${line#*=}"
		;;
		*)
			return 0
		;;
	esac

	key="$(_trim "$key")"
	value="$(_trim "$value")"

	[ -z "$key" ] && return 0

	toml_key="${prefix}.$(_toml_key_quote "$key")"

	case "$value_type" in
		bool)
			printf '%s = %s\n' "$toml_key" "$(_toml_bool "$value")"
		;;
		int|integer|number)
			printf '%s = %s\n' "$toml_key" "$value"
		;;
		*)
			printf '%s = %s\n' "$toml_key" "$(_toml_quote "$value")"
		;;
	esac
}

_KV_PREFIX=
_KV_TYPE=
_KV_HAS_LIST=0

_emit_kv_list_item() {
	_KV_HAS_LIST=1
	_emit_kv_pair "$_KV_PREFIX" "$1" "$_KV_TYPE"
}

_emit_kv_opt() {
	local section="$1"
	local option="$2"
	local prefix="$3"
	local value_type="$4"
	local scalar

	_KV_PREFIX="$prefix"
	_KV_TYPE="${value_type:-string}"
	_KV_HAS_LIST=0

	config_list_foreach "$section" "$option" _emit_kv_list_item

	if [ "$_KV_HAS_LIST" = "0" ]; then
		config_get scalar "$section" "$option"
		[ -n "$scalar" ] && _emit_kv_pair "$prefix" "$scalar" "$value_type"
	fi

	return 0
}

_HEADERS_ARRAY=
_HEADERS_HAS_LIST=0

_headers_array_add() {
	local line="$1"
	local key value item

	case "$line" in
		*=*)
			key="${line%%=*}"
			value="${line#*=}"
		;;
		*)
			return 0
		;;
	esac

	key="$(_trim "$key")"
	value="$(_trim "$value")"

	[ -z "$key" ] && return 0

	item="{ name = $(_toml_quote "$key"), value = $(_toml_quote "$value") }"

	if [ -n "$_HEADERS_ARRAY" ]; then
		_HEADERS_ARRAY="${_HEADERS_ARRAY}, "
	fi

	_HEADERS_ARRAY="${_HEADERS_ARRAY}${item}"
}

_collect_header_item() {
	_HEADERS_HAS_LIST=1
	_headers_array_add "$1"
}

_emit_headers_opt() {
	local section="$1"
	local option="$2"
	local toml_key="$3"
	local scalar

	_HEADERS_ARRAY=
	_HEADERS_HAS_LIST=0

	config_list_foreach "$section" "$option" _collect_header_item

	if [ "$_HEADERS_HAS_LIST" = "0" ]; then
		config_get scalar "$section" "$option"
		[ -n "$scalar" ] && _headers_array_add "$scalar"
	fi

	[ -n "$_HEADERS_ARRAY" ] || return 0
	printf '%s = [%s]\n' "$toml_key" "$_HEADERS_ARRAY"
}

_emit_name_value_array_opt() {
	_emit_headers_opt "$@"
}

_RAW_HAS_LIST=0

_emit_raw_item() {
	_RAW_HAS_LIST=1
	[ -n "$1" ] || return 0
	printf '%s\n' "$1"
}

_emit_raw_opt() {
	local section="$1"
	local option="$2"
	local scalar

	_RAW_HAS_LIST=0
	config_list_foreach "$section" "$option" _emit_raw_item

	if [ "$_RAW_HAS_LIST" = "0" ]; then
		config_get scalar "$section" "$option"
		[ -n "$scalar" ] || return 0
		printf '%s\n' "$scalar"
		return $?
	fi

	return 0
}

_emit_auth_scopes() {
	local section="$1"
	local hb nwc v

	_collect_array_option "$section" auth_additional_scopes

	if [ -z "$_TOML_ARRAY" ]; then
		config_get hb "$section" authenticate_heartbeats
		config_get nwc "$section" authenticate_new_work_conns

		v="$(_toml_bool "$hb")"
		[ "$v" = "true" ] && _toml_array_add "HeartBeats"

		v="$(_toml_bool "$nwc")"
		[ "$v" = "true" ] && _toml_array_add "NewWorkConns"
	fi

	[ -n "$_TOML_ARRAY" ] || return 0
	printf 'auth.additionalScopes = [%s]\n' "$_TOML_ARRAY"
}

_emit_admin_web_tls() {
	local section="$1"
	local enabled cert key

	config_get enabled "$section" admin_tls_enable

	[ "$(_toml_bool "$enabled")" = "true" ] || return 0

	config_get cert "$section" admin_tls_cert_file
	config_get key "$section" admin_tls_key_file

	if [ -z "$cert" ] || [ -z "$key" ]; then
		_err "admin_tls_cert_file and admin_tls_key_file are required when admin_tls_enable is enabled"
		return 1
	fi

	if [ ! -r "$cert" ]; then
		_err "admin TLS certificate file is not readable: $cert"
		return 1
	fi

	if [ ! -r "$key" ]; then
		_err "admin TLS private key file is not readable: $key"
		return 1
	fi

	_toml_line webServer.tls.certFile "$cert" string
	_toml_line webServer.tls.keyFile "$key" string

	return 0
}

_emit_admin_web() {
	local section="$1"
	local port addr

	config_get port "$section" admin_port

	# Empty or 0 means web server is disabled.
	[ -n "$port" ] && [ "$port" != "0" ] || return 0

	config_get addr "$section" admin_addr
	_toml_line webServer.addr "${addr:-127.0.0.1}" string
	_toml_line webServer.port "$port" port
	_emit_opt "$section" admin_user webServer.user string
	_emit_opt "$section" admin_pwd webServer.password string
	_emit_admin_web_tls "$section" || return 1
	_emit_opt "$section" assets_dir webServer.assetsDir string
	_emit_opt "$section" pprof_enable webServer.pprofEnable bool

	return 0
}

_emit_common() {
	local section="common"
	local method token token_source_type token_source_file_path

	# Root options
	_emit_opt "$section" client_id clientID string
	_emit_opt "$section" user user string
	_emit_opt "$section" server_addr serverAddr string
	_emit_opt "$section" server_port serverPort port
	_emit_opt "$section" nat_hole_stun_server natHoleStunServer string
	_emit_opt "$section" login_fail_exit loginFailExit bool
	_emit_opt "$section" dns_server dnsServer string
	_emit_array_opt "$section" start start
	_emit_opt "$section" udp_packet_size udpPacketSize int
	_emit_array_opt "$section" includes includes

	# Auth
	config_get method "$section" authentication_method
	config_get token "$section" token
	config_get token_source_type "$section" token_source_type
	config_get token_source_file_path "$section" token_source_file_path

	[ -z "$method" ] && { [ -n "$token" ] || [ -n "$token_source_type" ]; } && method="token"

	_toml_line auth.method "$method" string

	if [ "$method" = "token" ] || [ -z "$method" ]; then
		if [ -n "$token_source_type" ]; then
			if [ -n "$token" ]; then
				_err "token and token_source_type are mutually exclusive"
				return 1
			fi

			case "$token_source_type" in
				file)
					if [ -z "$token_source_file_path" ]; then
						_err "token_source_file_path is required when token_source_type=file"
						return 1
					fi

					_toml_line auth.tokenSource.type "$token_source_type" string
					_toml_line auth.tokenSource.file.path "$token_source_file_path" string
				;;

				exec)
					local token_source_exec_command

					config_get token_source_exec_command "$section" token_source_exec_command
					if [ -z "$token_source_exec_command" ]; then
						_err "token_source_exec_command is required when token_source_type=exec"
						return 1
					fi

					_ALLOW_UNSAFE_TOKEN_SOURCE_EXEC=1
					_toml_line auth.tokenSource.type "$token_source_type" string
					_toml_line auth.tokenSource.exec.command "$token_source_exec_command" string
					_emit_array_opt "$section" token_source_exec_args auth.tokenSource.exec.args
					_emit_name_value_array_opt "$section" token_source_exec_env auth.tokenSource.exec.env
				;;

				*)
					_err "unsupported token_source_type: $token_source_type"
					return 1
				;;
			esac
		else
			_toml_line auth.token "$token" string
		fi
	fi

	_emit_auth_scopes "$section"

	if [ "$method" = "oidc" ]; then
		_emit_opt "$section" oidc_client_id auth.oidc.clientID string
		_emit_opt "$section" oidc_client_secret auth.oidc.clientSecret string
		_emit_opt "$section" oidc_audience auth.oidc.audience string
		_emit_opt "$section" oidc_scope auth.oidc.scope string
		_emit_opt "$section" oidc_token_endpoint_url auth.oidc.tokenEndpointURL string
		_emit_kv_opt "$section" oidc_additional_endpoint_params auth.oidc.additionalEndpointParams string
		_emit_opt "$section" oidc_trusted_ca_file auth.oidc.trustedCaFile string
		_emit_opt "$section" oidc_insecure_skip_verify auth.oidc.insecureSkipVerify bool
		_emit_opt "$section" oidc_proxy_url auth.oidc.proxyURL string
	fi

	# Transport
	_emit_opt "$section" dial_server_timeout transport.dialServerTimeout int
	_emit_opt "$section" dial_server_keepalive transport.dialServerKeepalive int
	_emit_opt "$section" http_proxy transport.proxyURL string
	_emit_opt "$section" pool_count transport.poolCount int
	_emit_opt "$section" tcp_mux transport.tcpMux bool
	_emit_opt "$section" tcp_mux_keepalive_interval transport.tcpMuxKeepaliveInterval int
	_emit_opt "$section" protocol transport.protocol string
	_emit_opt "$section" wire_protocol transport.wireProtocol string
	_emit_opt "$section" connect_server_local_ip transport.connectServerLocalIP string
	_emit_opt "$section" heartbeat_interval transport.heartbeatInterval int
	_emit_opt "$section" heartbeat_timeout transport.heartbeatTimeout int

	# QUIC
	_emit_opt "$section" quic_keepalive_period transport.quic.keepalivePeriod int
	_emit_opt "$section" quic_max_idle_timeout transport.quic.maxIdleTimeout int
	_emit_opt "$section" quic_max_incoming_streams transport.quic.maxIncomingStreams int

	# TLS
	_emit_opt "$section" tls_enable transport.tls.enable bool
	_emit_opt "$section" tls_cert_file transport.tls.certFile string
	_emit_opt "$section" tls_key_file transport.tls.keyFile string
	_emit_opt "$section" tls_trusted_ca_file transport.tls.trustedCaFile string
	_emit_opt "$section" tls_server_name transport.tls.serverName string
	_emit_opt "$section" disable_custom_tls_first_byte transport.tls.disableCustomTLSFirstByte bool

	# Web admin server
	_emit_admin_web "$section" || return 1

	# Feature gates / virtual net
	_emit_kv_opt "$section" feature_gates featureGates bool
	_emit_opt "$section" virtual_net_address virtualNet.address string
	_emit_opt "$section" store_path store.path string

	# Client metadata
	_emit_kv_opt "$section" metadatas metadatas string

	# Log
	_emit_opt "$section" log_file log.to string
	_emit_opt "$section" log_level log.level string
	_emit_opt "$section" log_max_days log.maxDays int
	_emit_opt "$section" disable_log_color log.disablePrintColor bool

	# Raw extra TOML lines kept for manual UCI usage; LuCI intentionally hides this.
	_emit_raw_opt "$section" _
}

_emit_plugin() {
	local section="$1"
	local plugin role

	config_get plugin "$section" plugin
	config_get role "$section" role

	[ -z "$plugin" ] && return 0

	_toml_line plugin.type "$plugin" string

	case "$plugin" in
		http_proxy)
			_emit_opt "$section" plugin_http_user plugin.httpUser string
			_emit_opt "$section" plugin_http_passwd plugin.httpPassword string
		;;

		socks5)
			_emit_opt "$section" plugin_user plugin.username string
			_emit_opt "$section" plugin_passwd plugin.password string
		;;

		unix_domain_socket)
			_emit_opt "$section" plugin_unix_path plugin.unixPath string
		;;

		static_file)
			_emit_opt "$section" plugin_local_path plugin.localPath string
			_emit_opt "$section" plugin_strip_prefix plugin.stripPrefix string
			_emit_opt "$section" plugin_http_user plugin.httpUser string
			_emit_opt "$section" plugin_http_passwd plugin.httpPassword string
		;;

		https2http|https2https)
			_emit_opt "$section" plugin_local_addr plugin.localAddr string
			_emit_opt "$section" plugin_crt_path plugin.crtPath string
			_emit_opt "$section" plugin_key_path plugin.keyPath string
			_emit_opt "$section" plugin_host_header_rewrite plugin.hostHeaderRewrite string
			_emit_opt "$section" plugin_enable_http2 plugin.enableHTTP2 bool
			_emit_kv_opt "$section" plugin_request_headers plugin.requestHeaders.set string
		;;

		http2https|http2http)
			_emit_opt "$section" plugin_local_addr plugin.localAddr string
			_emit_opt "$section" plugin_host_header_rewrite plugin.hostHeaderRewrite string
			_emit_kv_opt "$section" plugin_request_headers plugin.requestHeaders.set string
		;;

		tls2raw)
			_emit_opt "$section" plugin_local_addr plugin.localAddr string
			_emit_opt "$section" plugin_crt_path plugin.crtPath string
			_emit_opt "$section" plugin_key_path plugin.keyPath string
		;;

		virtual_net)
			[ "$role" = "visitor" ] && \
				_emit_opt "$section" plugin_destination_ip plugin.destinationIP string
		;;
	esac

	return 0
}

_emit_proxy() {
	local section="$1"
	local pname ptype plugin hct

	[ "$section" = "common" ] && return 0

	config_get pname "$section" name "$section"
	config_get ptype "$section" type
	config_get plugin "$section" plugin

	[ -z "$ptype" ] && ptype="tcp"

	printf '\n[[proxies]]\n'
	_toml_line name "$pname" string
	_toml_line type "$ptype" string

	_emit_opt "$section" enabled enabled bool

	# localIP/localPort are useful for normal local-service proxies.
	# If plugin is enabled, plugin usually handles the local service itself.
	if [ -z "$plugin" ]; then
		case "$ptype" in
			tcp|udp|http|https|stcp|xtcp|sudp|tcpmux)
				_emit_opt "$section" local_ip localIP string
				_emit_opt "$section" local_port localPort port
			;;
		esac
	fi

	# remotePort is mainly used by tcp/udp-style listeners.
	# Plugin proxies with type=tcp also need remotePort.
	case "$ptype" in
		tcp|udp)
			_emit_opt "$section" remote_port remotePort port0
		;;
	esac

	# Common proxy transport options.
	_emit_opt "$section" bandwidth_limit transport.bandwidthLimit string
	_emit_opt "$section" bandwidth_limit_mode transport.bandwidthLimitMode string
	_emit_opt "$section" use_encryption transport.useEncryption bool
	_emit_opt "$section" use_compression transport.useCompression bool
	_emit_opt "$section" proxy_protocol_version transport.proxyProtocolVersion string

	# HTTP / HTTPS domain options.
	case "$ptype" in
		http|https)
			_emit_array_opt "$section" custom_domains customDomains
			_emit_opt "$section" subdomain subdomain string
		;;
	esac

	# HTTP-only options. Skip these when plugin is enabled to avoid stale normal HTTP proxy fields.
	case "$ptype" in
		http)
			_emit_opt "$section" route_by_http_user routeByHTTPUser string
			if [ -z "$plugin" ]; then
				_emit_array_opt "$section" locations locations
				_emit_opt "$section" http_user httpUser string
				_emit_opt "$section" http_pwd httpPassword string
				_emit_opt "$section" host_header_rewrite hostHeaderRewrite string
				_emit_kv_opt "$section" request_headers requestHeaders.set string
				_emit_kv_opt "$section" response_headers responseHeaders.set string
			fi
		;;
	esac

	# TCPMUX options.
	case "$ptype" in
		tcpmux)
			_emit_array_opt "$section" custom_domains customDomains
			_emit_opt "$section" http_user httpUser string
			_emit_opt "$section" http_pwd httpPassword string
			_emit_opt "$section" multiplexer multiplexer string
			_emit_opt "$section" route_by_http_user routeByHTTPUser string
		;;
	esac

	# Load balancer options.
	_emit_opt "$section" group loadBalancer.group string
	_emit_opt "$section" group_key loadBalancer.groupKey string

	# Health check options.
	config_get hct "$section" health_check_type
	if [ -n "$hct" ] && [ -z "$plugin" ]; then
		case "$ptype" in
			tcp|http|https|tcpmux)
				_emit_opt "$section" health_check_type healthCheck.type string
				_emit_opt "$section" health_check_timeout_s healthCheck.timeoutSeconds int
				_emit_opt "$section" health_check_max_failed healthCheck.maxFailed int
				_emit_opt "$section" health_check_interval_s healthCheck.intervalSeconds int

				if [ "$hct" = "http" ]; then
					_emit_opt "$section" health_check_url healthCheck.path string
					_emit_headers_opt "$section" health_check_headers healthCheck.httpHeaders
				fi
			;;
		esac
	fi

	# STCP / XTCP / SUDP server options.
	case "$ptype" in
		stcp|xtcp|sudp)
			_emit_opt "$section" sk secretKey string
			_emit_array_opt "$section" allow_users allowUsers
		;;
	esac

	# NAT traversal options are mainly useful for XTCP.
	case "$ptype" in
		xtcp)
			_emit_opt "$section" nat_disable_assisted_addrs natTraversal.disableAssistedAddrs bool
		;;
	esac

	# Metadata / annotations.
	_emit_kv_opt "$section" metadatas metadatas string
	_emit_kv_opt "$section" annotations annotations string

	# Plugin options are filtered by plugin type in _emit_plugin().
	_emit_plugin "$section"

	# Raw extra TOML lines.
	_emit_raw_opt "$section" _
}

_emit_visitor() {
	local section="$1"
	local vname vtype

	config_get vname "$section" name "$section"
	config_get vtype "$section" type

	[ -z "$vtype" ] && vtype="stcp"

	printf '\n[[visitors]]\n'
	_toml_line name "$vname" string
	_toml_line type "$vtype" string

	_emit_opt "$section" server_user serverUser string
	_emit_opt "$section" server_name serverName string
	_emit_opt "$section" sk secretKey string
	_emit_opt "$section" bind_addr bindAddr string
	_emit_opt "$section" bind_port bindPort visitor_bind_port
	_emit_opt "$section" enabled enabled bool
	_emit_opt "$section" use_encryption transport.useEncryption bool
	_emit_opt "$section" use_compression transport.useCompression bool

	# XTCP visitor-specific options.
	case "$vtype" in
		xtcp)
			_emit_opt "$section" visitor_protocol protocol string
			_emit_opt "$section" keep_tunnel_open keepTunnelOpen bool
			_emit_opt "$section" max_retries_an_hour maxRetriesAnHour int
			_emit_opt "$section" min_retry_interval minRetryInterval int
			_emit_opt "$section" fallback_to fallbackTo string
			_emit_opt "$section" fallback_timeout_ms fallbackTimeoutMs int
			_emit_opt "$section" nat_disable_assisted_addrs natTraversal.disableAssistedAddrs bool
		;;
	esac

	# Visitor plugin, for example virtual_net.
	_emit_plugin "$section"

	# Raw extra TOML lines.
	_emit_raw_opt "$section" _
}

_emit_conf_section() {
	local section="$1"
	local role ptype

	[ "$section" = "common" ] && return 0

	config_get role "$section" role
	config_get ptype "$section" type

	if [ "$role" = "visitor" ]; then
		case "$ptype" in
			''|stcp|xtcp|sudp)
				_emit_visitor "$section"
				return $?
			;;
			*)
				_err "visitor section $section has unsupported type: $ptype"
				_TOML_ERR=1
				return 1
			;;
		esac
	fi

	_emit_proxy "$section"
}

_find_init_section() {
	[ -z "$init_cfg" ] && init_cfg="$1"
	return 0
}

_append_conf_file() {
	local file="$1"
	local dir="/etc/frp/$NAME.d/"
	local real_file

	case "$file" in
		"$dir"*.toml)
			case "$file" in
				*../*)
					_err "additional config file outside $dir is not allowed: $file"
					_TOML_ERR=1
					return 1
				;;
			esac
		;;
		*)
			_err "additional config file must be under $dir and end with .toml: $file"
			_TOML_ERR=1
			return 1
		;;
	esac

	[ -r "$file" ] || {
		_err "additional config file not readable: $file"
		_TOML_ERR=1
		return 1
	}

	real_file="$(readlink -f "$file")" || {
		_err "additional config file path cannot be resolved: $file"
		_TOML_ERR=1
		return 1
	}

	case "$real_file" in
		"$dir"*.toml)
		;;
		*)
			_err "additional config file resolves outside $dir or is not .toml: $file"
			_TOML_ERR=1
			return 1
		;;
	esac

	printf '\n' >> "$CONF_FILE"
	cat "$real_file" >> "$CONF_FILE"
	printf '\n' >> "$CONF_FILE"
}

_watch_conf_file() {
	local file="$1"

	[ -r "$file" ] && procd_set_param file "$file"
	return 0
}

_append_env() {
	procd_append_param env "$1"
}

service_triggers() {
	procd_add_reload_trigger "$NAME"
}

start_service() {
	local init_cfg=
	local stdout=1
	local stderr=1
	local respawn=1
	local run_user=
	local run_group=
	local old_umask

	mkdir -p /var/etc
	_TOML_ERR=0
	_ALLOW_UNSAFE_TOKEN_SOURCE_EXEC=0

	config_load "$NAME"

	config_foreach _find_init_section init

	old_umask="$(umask)"
	umask 077
	: > "$CONF_FILE" || {
		umask "$old_umask"
		_err "failed to create $CONF_FILE"
		return 1
	}
	umask "$old_umask"
	chmod 600 "$CONF_FILE" || {
		_err "failed to chmod $CONF_FILE"
		return 1
	}

	{
		printf '# This file is automatically generated from /etc/config/%s.\n' "$NAME"
		printf '# Do not edit this file directly.\n\n'

		_emit_common
	} >> "$CONF_FILE" || return 1
	[ "$_TOML_ERR" = "0" ] || return 1

	if [ -n "$init_cfg" ]; then
		config_list_foreach "$init_cfg" conf_inc _append_conf_file

		config_get_bool stdout "$init_cfg" stdout 1
		config_get_bool stderr "$init_cfg" stderr 1
		config_get_bool respawn "$init_cfg" respawn 1
		config_get run_user "$init_cfg" user
		config_get run_group "$init_cfg" group
	fi

	{
		config_foreach _emit_conf_section conf
	} >> "$CONF_FILE" || return 1
	[ "$_TOML_ERR" = "0" ] || return 1

	if [ -n "$run_user" ]; then
		chown "$run_user${run_group:+:$run_group}" "$CONF_FILE" 2>/dev/null || {
			_err "failed to chown $CONF_FILE to $run_user${run_group:+:$run_group}"
			return 1
		}
	fi

	chmod 600 "$CONF_FILE" || {
		_err "failed to chmod $CONF_FILE"
		return 1
	}

	procd_open_instance
	if [ "$_ALLOW_UNSAFE_TOKEN_SOURCE_EXEC" = "1" ]; then
		procd_set_param command "$PROG" -c "$CONF_FILE" --allow-unsafe=TokenSourceExec
	else
		procd_set_param command "$PROG" -c "$CONF_FILE"
	fi
	procd_set_param file "$CONF_FILE"
	procd_set_param file "/etc/config/$NAME"

	if [ -n "$init_cfg" ]; then
		config_list_foreach "$init_cfg" conf_inc _watch_conf_file
	fi

	procd_set_param stdout "$stdout"
	procd_set_param stderr "$stderr"

	[ -n "$run_user" ] && procd_set_param user "$run_user"
	[ -n "$run_group" ] && procd_set_param group "$run_group"
	[ "$respawn" -eq 1 ] && procd_set_param respawn

	if [ -n "$init_cfg" ]; then
		config_list_foreach "$init_cfg" env _append_env
	fi

	procd_close_instance
}