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
use std::{
borrow::BorrowMut,
ffi::OsStr,
io::{prelude::*, BufRead, BufReader},
net,
process::{Child, Command, Stdio},
time::Duration,
};
#[cfg(test)]
use std::cell::RefCell;
use anyhow::{anyhow,Result};
use thiserror::Error;
use log::*;
use rand::seq::SliceRandom;
use rand::thread_rng;
use regex::Regex;
use websocket::url::Url;
#[cfg(windows)]
use winreg::{enums::HKEY_LOCAL_MACHINE, RegKey};
#[cfg(not(feature = "fetch"))]
use crate::browser::default_executable;
use crate::util;
#[cfg(feature = "fetch")]
use super::fetcher::{Fetcher, FetcherOptions};
use std::collections::HashMap;
#[cfg(test)]
struct ForTesting;
#[cfg(test)]
impl ForTesting {
thread_local! {
static USER_DATA_DIR: RefCell<Option<String>> = RefCell::new(None);
}
}
pub struct Process {
child_process: TemporaryProcess,
pub debug_ws_url: Url,
}
#[derive(Debug, Error)]
enum ChromeLaunchError {
#[error("Chrome launched, but didn't give us a WebSocket URL before we timed out")]
PortOpenTimeout,
#[error("There are no available ports between 8000 and 9000 for debugging")]
NoAvailablePorts,
#[error("The chosen debugging port is already in use")]
DebugPortInUse,
}
#[cfg(windows)]
pub(crate) fn get_chrome_path_from_registry() -> Option<std::path::PathBuf> {
RegKey::predef(HKEY_LOCAL_MACHINE)
.open_subkey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\chrome.exe")
.and_then(|key| key.get_value::<String, _>(""))
.map(std::path::PathBuf::from)
.ok()
}
struct TemporaryProcess(Child, Option<tempfile::TempDir>);
impl Drop for TemporaryProcess {
fn drop(&mut self) {
info!("Killing Chrome. PID: {}", self.0.id());
self.0.kill().and_then(|_| self.0.wait()).ok();
self.1.take().map(|dir| {
if let Err(e) = dir.close() {
warn!("Failed to close temporary directory: {}", e);
}
});
}
}
#[derive(Builder)]
pub struct LaunchOptions<'a> {
#[builder(default = "true")]
pub headless: bool,
#[builder(default = "true")]
pub sandbox: bool,
#[builder(default = "None")]
pub window_size: Option<(u32, u32)>,
#[builder(default = "None")]
pub port: Option<u16>,
#[builder(default = "true")]
pub ignore_certificate_errors: bool,
#[builder(default = "None")]
pub path: Option<std::path::PathBuf>,
#[builder(default = "None")]
pub user_data_dir: Option<std::path::PathBuf>,
#[builder(default)]
pub extensions: Vec<&'a OsStr>,
#[builder(default)]
pub args: Vec<&'a OsStr>,
#[builder(default)]
pub disable_default_args: bool,
#[cfg_attr(feature = "fetch", builder(default))]
#[cfg(feature = "fetch")]
pub fetcher_options: FetcherOptions,
#[builder(default = "Duration::from_secs(30)")]
pub idle_browser_timeout: Duration,
#[builder(default = "None")]
pub process_envs: Option<HashMap<String, String>>,
#[builder(default = "None")]
pub proxy_server: Option<&'a str>
}
impl<'a> Default for LaunchOptions<'a> {
fn default() -> Self {
LaunchOptions {
headless: true,
sandbox: true,
idle_browser_timeout: Duration::from_secs(30),
window_size: None,
path: None,
user_data_dir: None,
port: None,
ignore_certificate_errors: true,
extensions: Vec::new(),
process_envs: None,
#[cfg(feature = "fetch")]
fetcher_options: Default::default(),
args: Vec::new(),
disable_default_args: false,
proxy_server: None,
}
}
}
impl<'a> LaunchOptions<'a> {
pub fn default_builder() -> LaunchOptionsBuilder<'a> {
LaunchOptionsBuilder::default()
}
}
pub static DEFAULT_ARGS: [&str; 25] = [
"--allow-pre-commit-input",
"--disable-background-timer-throttling",
"--disable-backgrounding-occluded-windows",
"--disable-breakpad",
"--disable-client-side-phishing-detection",
"--disable-component-extensions-with-background-pages",
"--disable-component-update",
"--disable-default-apps",
"--disable-dev-shm-usage",
"--deny-permission-prompts",
"--disable-features=Translate,BackForwardCache,AcceptCHFrame,MediaRouter,OptimizationHints",
"--disable-hang-monitor",
"--disable-ipc-flooding-protection",
"--disable-popup-blocking",
"--disable-prompt-on-repost",
"--disable-sync",
"--enable-automation",
"--enable-blink-features=IdleDetection",
"--enable-features=NetworkServiceInProcess2",
"--export-tagged-pdf",
"--force-color-profile=srgb",
"--metrics-recording-only",
"--no-first-run",
"--password-store=basic",
"--use-mock-keychain",
];
impl Process {
pub fn new(mut launch_options: LaunchOptions) -> Result<Self> {
if launch_options.path.is_none() {
#[cfg(feature = "fetch")]
{
let fetch = Fetcher::new(launch_options.fetcher_options.clone())?;
launch_options.path = Some(fetch.fetch()?);
}
#[cfg(not(feature = "fetch"))]
{
launch_options.path = Some(default_executable().map_err(|e| anyhow!("{}", e))?);
}
}
let mut process = Self::start_process(&launch_options)?;
info!("Started Chrome. PID: {}", process.0.id());
let url;
let mut attempts = 0;
loop {
if attempts > 10 {
return Err(ChromeLaunchError::NoAvailablePorts {}.into());
}
match Self::ws_url_from_output(process.0.borrow_mut()) {
Ok(debug_ws_url) => {
url = debug_ws_url;
debug!("Found debugging WS URL: {:?}", url);
break;
}
Err(error) => {
trace!("Problem getting WebSocket URL from Chrome: {}", error);
if launch_options.port.is_none() {
process = Self::start_process(&launch_options)?;
} else {
return Err(error);
}
}
}
trace!(
"Trying again to find available debugging port. Attempts: {}",
attempts
);
attempts += 1;
}
let mut child = process.0.borrow_mut();
child.stderr = None;
Ok(Self {
child_process: process,
debug_ws_url: url,
})
}
fn start_process(launch_options: &LaunchOptions) -> Result<TemporaryProcess> {
let debug_port = if let Some(port) = launch_options.port {
port
} else {
get_available_port().ok_or(ChromeLaunchError::NoAvailablePorts {})?
};
let port_option = format!("--remote-debugging-port={}", debug_port);
let window_size_option = if let Some((width, height)) = launch_options.window_size {
format!("--window-size={},{}", width, height)
} else {
String::from("")
};
let mut temp_user_data_dir = None;
let user_data_dir = if let Some(dir) = &launch_options.user_data_dir {
dir.to_owned()
} else {
let dir = ::tempfile::Builder::new()
.prefix("rust-headless-chrome-profile")
.tempdir()?;
let buf = dir.path().to_path_buf();
temp_user_data_dir = Some(dir);
buf
};
let data_dir_option = format!("--user-data-dir={}", &user_data_dir.to_str().unwrap());
#[cfg(test)]
ForTesting::USER_DATA_DIR.with(|dir| {
*dir.borrow_mut() = match user_data_dir.to_str() {
Some(s) => Some(s.to_owned()),
None => None,
};
});
trace!("Chrome will have profile: {}", data_dir_option);
let mut args = vec![
port_option.as_str(),
"--disable-gpu",
"--enable-logging",
"--verbose",
"--log-level=0",
"--no-first-run",
"--disable-audio-output",
data_dir_option.as_str(),
];
if !launch_options.disable_default_args {
args.extend(&DEFAULT_ARGS);
}
if !launch_options.args.is_empty() {
let extra_args: Vec<&str> = launch_options
.args
.iter()
.map(|a| a.to_str().unwrap())
.collect();
args.extend(extra_args);
}
if !window_size_option.is_empty() {
args.extend(&[window_size_option.as_str()]);
}
if launch_options.headless {
args.extend(&["--headless"]);
}
if launch_options.ignore_certificate_errors {
args.extend(&["--ignore-certificate-errors"])
}
let proxy_server_option = if let Some(ref proxy_server) = launch_options.proxy_server {
format!("--proxy-server={}", proxy_server)
}
else {
String::from("")
};
if !proxy_server_option.is_empty() {
args.extend(&[proxy_server_option.as_str()]);
}
if !launch_options.sandbox {
args.extend(&["--no-sandbox", "--disable-setuid-sandbox"]);
}
let extension_args: Vec<String> = launch_options
.extensions
.iter()
.map(|e| format!("--load-extension={}", e.to_str().unwrap()))
.collect();
args.extend(extension_args.iter().map(String::as_str));
let path = launch_options
.path
.as_ref()
.ok_or_else(|| anyhow!("Chrome path required"))?;
info!("Launching Chrome binary at {:?}", &path);
let mut command = Command::new(&path);
if let Some(process_envs) = launch_options.process_envs.clone() {
command.envs(process_envs);
}
let process = TemporaryProcess(command.args(&args).stderr(Stdio::piped()).spawn()?, temp_user_data_dir);
Ok(process)
}
fn ws_url_from_reader<R>(reader: BufReader<R>) -> Result<Option<String>>
where
R: Read,
{
let port_taken_re = Regex::new(r"ERROR.*bind\(\)").unwrap();
let re = Regex::new(r"listening on (.*/devtools/browser/.*)$").unwrap();
let extract = |text: &str| -> Option<String> {
let caps = re.captures(text);
let cap = &caps?[1];
Some(cap.into())
};
for line in reader.lines() {
let chrome_output = line?;
trace!("Chrome output: {}", chrome_output);
if port_taken_re.is_match(&chrome_output) {
return Err(ChromeLaunchError::DebugPortInUse {}.into());
}
if let Some(answer) = extract(&chrome_output) {
return Ok(Some(answer));
}
}
Ok(None)
}
fn ws_url_from_output(child_process: &mut Child) -> Result<Url> {
let chrome_output_result = util::Wait::with_timeout(Duration::from_secs(30)).until(|| {
let my_stderr = BufReader::new(child_process.stderr.as_mut().unwrap());
match Self::ws_url_from_reader(my_stderr) {
Ok(output_option) => {
if let Some(output) = output_option {
Some(Ok(output))
} else {
None
}
}
Err(err) => Some(Err(err)),
}
});
if let Ok(output_result) = chrome_output_result {
Ok(Url::parse(&output_result?)?)
} else {
Err(ChromeLaunchError::PortOpenTimeout {}.into())
}
}
pub fn get_id(&self) -> u32 {
self.child_process.0.id()
}
}
fn get_available_port() -> Option<u16> {
let mut ports: Vec<u16> = (8000..9000).collect();
ports.shuffle(&mut thread_rng());
ports.iter().find(|port| port_is_available(**port)).cloned()
}
fn port_is_available(port: u16) -> bool {
net::TcpListener::bind(("127.0.0.1", port)).is_ok()
}
#[cfg(test)]
mod tests {
#[cfg(feature = "fetch")]
use std::fs;
#[cfg(feature = "fetch")]
use std::path::PathBuf;
use std::sync::Once;
use std::thread;
use crate::browser::default_executable;
use super::*;
static INIT: Once = Once::new();
fn setup() {
INIT.call_once(|| {
env_logger::try_init().unwrap_or(());
});
}
#[test]
fn can_launch_chrome_and_get_ws_url() {
setup();
let chrome = super::Process::new(
LaunchOptions::default_builder()
.path(Some(default_executable().unwrap()))
.build()
.unwrap(),
)
.unwrap();
info!("{:?}", chrome.debug_ws_url);
}
#[test]
#[cfg(feature = "fetch")]
fn can_install_chrome_to_dir_and_launch() {
use crate::browser::fetcher::CUR_REV;
#[cfg(target_os = "linux")]
const PLATFORM: &str = "linux";
#[cfg(target_os = "macos")]
const PLATFORM: &str = "mac";
#[cfg(windows)]
const PLATFORM: &str = "win";
let tests_temp_dir = [env!("CARGO_MANIFEST_DIR"), "tests", "temp"]
.iter()
.collect::<PathBuf>();
setup();
let mut installed_dir = tests_temp_dir.clone();
installed_dir.push(format!("{}-{}", PLATFORM, CUR_REV));
if installed_dir.exists() {
info!("Deleting pre-existing install at {:?}", &installed_dir);
fs::remove_dir_all(&installed_dir).expect("Could not delete pre-existing install");
}
let chrome = super::Process::new(
LaunchOptions::default_builder()
.fetcher_options(FetcherOptions::default().with_install_dir(Some(&tests_temp_dir)))
.build()
.unwrap(),
)
.unwrap();
info!("{:?}", chrome.debug_ws_url);
}
#[test]
fn handle_errors_in_chrome_output() {
setup();
let lines = "[0228/194641.093619:ERROR:socket_posix.cc(144)] bind() returned an error, errno=0: Cannot assign requested address (99)";
let reader = BufReader::new(lines.as_bytes());
let ws_url_result = Process::ws_url_from_reader(reader);
assert!(ws_url_result.is_err());
}
#[test]
fn handle_errors_in_chrome_output_gvisor_netlink() {
setup();
let lines = "[0703/145506.975691:ERROR:address_tracker_linux.cc(214)] Could not bind NETLINK socket: Permission denied (13)";
let reader = BufReader::new(lines.as_bytes());
let ws_url_result = Process::ws_url_from_reader(reader);
assert_eq!(true, ws_url_result.is_ok());
}
#[cfg(target_os = "linux")]
fn current_child_pids() -> Vec<i32> {
use std::fs::File;
use std::io::prelude::*;
let current_pid = std::process::id();
let mut current_process_children_file = File::open(format!(
"/proc/{}/task/{}/children",
current_pid, current_pid
))
.unwrap();
let mut child_pids = String::new();
current_process_children_file
.read_to_string(&mut child_pids)
.unwrap();
child_pids
.split_whitespace()
.map(|pid_str| pid_str.parse::<i32>().unwrap())
.collect()
}
#[test]
#[cfg(target_os = "linux")]
fn kills_process_on_drop() {
setup();
{
let _chrome = &mut super::Process::new(
LaunchOptions::default_builder()
.path(Some(default_executable().unwrap()))
.build()
.unwrap(),
)
.unwrap();
}
let child_pids = current_child_pids();
assert!(child_pids.is_empty());
}
#[test]
fn launch_multiple_non_headless_instances() {
setup();
let mut handles = Vec::new();
for _ in 0..10 {
let handle = thread::spawn(|| {
std::thread::sleep(std::time::Duration::from_millis(10));
let chrome = super::Process::new(
LaunchOptions::default_builder()
.path(Some(default_executable().unwrap()))
.build()
.unwrap(),
)
.unwrap();
std::thread::sleep(std::time::Duration::from_millis(100));
chrome.debug_ws_url.clone()
});
handles.push(handle);
}
for handle in handles {
handle.join().unwrap();
}
}
#[test]
fn no_instance_sharing() {
setup();
let mut handles = Vec::new();
for _ in 0..10 {
let chrome = super::Process::new(
LaunchOptions::default_builder()
.path(Some(default_executable().unwrap()))
.headless(true)
.build()
.unwrap(),
)
.unwrap();
handles.push(chrome);
}
}
#[test]
fn test_temporary_user_data_dir_is_removed_automatically() {
setup();
let options = LaunchOptions::default_builder()
.build()
.unwrap();
let temp_dir = options.user_data_dir.clone();
assert_eq!(None, temp_dir);
let user_data_dir = {
let _chrome = &mut super::Process::new(
options,
)
.unwrap();
ForTesting::USER_DATA_DIR.with(|dir| dir.borrow_mut().take())
};
match user_data_dir {
Some(temp_path) => {
let user_data_dir_exists = std::path::Path::new(&temp_path).is_dir();
assert_eq!(user_data_dir_exists, false);
}
None => panic!("No user data dir was created"),
}
}
}