Skip to main content

glean_core/ping/
mod.rs

1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at https://mozilla.org/MPL/2.0/.
4
5//! Ping collection, assembly & submission.
6
7use std::fs::{self, create_dir_all, File};
8use std::io::{BufRead, BufReader, Write};
9use std::path::{Path, PathBuf};
10
11use log::info;
12use serde_json::{json, Value as JsonValue};
13
14use crate::common_metric_data::{CommonMetricData, Lifetime};
15use crate::metrics::{CounterMetric, DatetimeMetric, Metric, MetricType, PingType, TimeUnit};
16use crate::storage::{StorageManager, INTERNAL_STORAGE};
17use crate::upload::{HeaderMap, PingMetadata};
18use crate::util::{get_iso_time_string, local_now_with_offset};
19use crate::{Glean, Result, DELETION_REQUEST_PINGS_DIRECTORY, PENDING_PINGS_DIRECTORY};
20
21/// Holds everything you need to store or send a ping.
22pub struct Ping<'a> {
23    /// The unique document id.
24    pub doc_id: &'a str,
25    /// The ping's name.
26    pub name: &'a str,
27    /// The path on the server to use when uplaoding this ping.
28    pub url_path: &'a str,
29    /// The payload, including `*_info` fields.
30    pub content: JsonValue,
31    /// The headers to upload with the payload.
32    pub headers: HeaderMap,
33    /// Whether the content contains {client|ping}_info sections.
34    pub includes_info_sections: bool,
35    /// Other pings that should be scheduled when this ping is sent.
36    pub schedules_pings: Vec<String>,
37    /// Capabilities the uploader must have in order to uplaoad this ping.
38    pub uploader_capabilities: Vec<String>,
39}
40
41/// Collect a ping's data, assemble it into its full payload and store it on disk.
42pub struct PingMaker;
43
44fn merge(a: &mut JsonValue, b: &JsonValue) {
45    match (a, b) {
46        (&mut JsonValue::Object(ref mut a), JsonValue::Object(b)) => {
47            for (k, v) in b {
48                merge(a.entry(k.clone()).or_insert(JsonValue::Null), v);
49            }
50        }
51        (a, b) => {
52            *a = b.clone();
53        }
54    }
55}
56
57impl Default for PingMaker {
58    fn default() -> Self {
59        Self::new()
60    }
61}
62
63impl PingMaker {
64    /// Creates a new [`PingMaker`].
65    pub fn new() -> Self {
66        Self
67    }
68
69    /// Gets, and then increments, the sequence number for a given ping.
70    fn get_ping_seq(&self, glean: &Glean, storage_name: &str) -> usize {
71        // Don't attempt to increase sequence number for disabled ping
72        if !glean.is_ping_enabled(storage_name) {
73            return 0;
74        }
75
76        // Sequence numbers are stored as a counter under a name that includes the storage name
77        let seq = CounterMetric::new(CommonMetricData {
78            name: format!("{}#sequence", storage_name),
79            // We don't need a category, the name is already unique
80            category: "".into(),
81            send_in_pings: vec![INTERNAL_STORAGE.into()],
82            lifetime: Lifetime::User,
83            ..Default::default()
84        });
85
86        let current_seq = match glean.storage().get_metric(
87            #[cfg(not(feature = "sqlite"))]
88            glean,
89            seq.meta(),
90            INTERNAL_STORAGE,
91        ) {
92            Some(Metric::Counter(i)) => i,
93            _ => 0,
94        };
95
96        // Increase to next sequence id
97        seq.add_sync(glean, 1);
98
99        current_seq as usize
100    }
101
102    /// Gets the formatted start and end times for this ping and update for the next ping.
103    fn get_start_end_times(
104        &self,
105        glean: &Glean,
106        storage_name: &str,
107        time_unit: TimeUnit,
108    ) -> (String, String) {
109        let start_time = DatetimeMetric::new(
110            CommonMetricData {
111                name: format!("{}#start", storage_name),
112                category: "".into(),
113                send_in_pings: vec![INTERNAL_STORAGE.into()],
114                lifetime: Lifetime::User,
115                ..Default::default()
116            },
117            time_unit,
118        );
119
120        // "start_time" is the time the ping was generated the last time.
121        // If not available, we use the date the Glean object was initialized.
122        let start_time_data = start_time
123            .get_value(glean, INTERNAL_STORAGE)
124            .unwrap_or_else(|| glean.start_time());
125        let end_time_data = local_now_with_offset();
126
127        // Update the start time with the current time.
128        start_time.set_sync_chrono(glean, end_time_data);
129
130        // Format the times.
131        let start_time_data = get_iso_time_string(start_time_data, time_unit);
132        let end_time_data = get_iso_time_string(end_time_data, time_unit);
133        (start_time_data, end_time_data)
134    }
135
136    fn get_ping_info(
137        &self,
138        glean: &Glean,
139        storage_name: &str,
140        reason: Option<&str>,
141        precision: TimeUnit,
142    ) -> JsonValue {
143        let (start_time, end_time) = self.get_start_end_times(glean, storage_name, precision);
144        let mut map = json!({
145            "seq": self.get_ping_seq(glean, storage_name),
146            "start_time": start_time,
147            "end_time": end_time,
148        });
149
150        if let Some(reason) = reason {
151            map.as_object_mut()
152                .unwrap() // safe unwrap, we created the object above
153                .insert("reason".to_string(), JsonValue::String(reason.to_string()));
154        };
155
156        // Get the experiment data, if available.
157        if let Some(experiment_data) =
158            StorageManager.snapshot_experiments_as_json(glean.storage(), INTERNAL_STORAGE)
159        {
160            map.as_object_mut()
161                .unwrap() // safe unwrap, we created the object above
162                .insert("experiments".to_string(), experiment_data);
163        };
164
165        // Get the Server Knobs configuration, if available.
166        if let Some(config_json) = glean
167            .additional_metrics
168            .server_knobs_config
169            .get_value(glean, INTERNAL_STORAGE)
170        {
171            // Object metrics always hold a string produced by serde_json::to_string,
172            // so deserializing it back into a JsonValue cannot fail.
173            let server_knobs_config = serde_json::from_str(&config_json).unwrap();
174            map.as_object_mut()
175                .unwrap() // safe unwrap, we created the object above
176                .insert("server_knobs_config".to_string(), server_knobs_config);
177        }
178
179        map
180    }
181
182    fn get_client_info(&self, glean: &Glean, include_client_id: bool) -> JsonValue {
183        // Add the "telemetry_sdk_build", which is the glean-core version.
184        let mut map = json!({
185            "telemetry_sdk_build": crate::GLEAN_VERSION,
186        });
187
188        // Flatten the whole thing.
189        if let Some(client_info) =
190            StorageManager.snapshot_as_json(glean.storage(), "glean_client_info", true)
191        {
192            let client_info_obj = client_info.as_object().unwrap(); // safe unwrap, snapshot always returns an object.
193            for (_metric_type, metrics) in client_info_obj {
194                merge(&mut map, metrics);
195            }
196            let map = map.as_object_mut().unwrap(); // safe unwrap, we created the object above.
197            let mut attribution = serde_json::Map::new();
198            let mut distribution = serde_json::Map::new();
199            map.retain(|name, value| {
200                // Only works because we ensure no client_info metric categories contain '.'.
201                let mut split = name.split('.');
202                let category = split.next();
203                let name = split.next();
204                if let (Some(category), Some(name)) = (category, name) {
205                    if category == "attribution" {
206                        attribution.insert(name.into(), value.take());
207                        false
208                    } else if category == "distribution" {
209                        distribution.insert(name.into(), value.take());
210                        false
211                    } else {
212                        true
213                    }
214                } else {
215                    true
216                }
217            });
218            if !attribution.is_empty() {
219                map.insert("attribution".into(), serde_json::Value::from(attribution));
220            }
221            if !distribution.is_empty() {
222                map.insert("distribution".into(), serde_json::Value::from(distribution));
223            }
224        } else {
225            log::warn!("Empty client info data.");
226        }
227
228        if !include_client_id {
229            // safe unwrap, we created the object above
230            map.as_object_mut().unwrap().remove("client_id");
231        }
232
233        json!(map)
234    }
235
236    /// Build the headers to be persisted and sent with a ping.
237    ///
238    /// Currently the only headers we persist are `X-Debug-ID` and `X-Source-Tags`.
239    ///
240    /// # Arguments
241    ///
242    /// * `glean` - the [`Glean`] instance to collect headers from.
243    ///
244    /// # Returns
245    ///
246    /// A map of header names to header values.
247    /// Might be empty if there are no extra headers to send.
248    fn get_headers(&self, glean: &Glean) -> HeaderMap {
249        let mut headers_map = HeaderMap::new();
250
251        if let Some(debug_view_tag) = glean.debug_view_tag() {
252            headers_map.insert("X-Debug-ID".to_string(), debug_view_tag.to_string());
253        }
254
255        if let Some(source_tags) = glean.source_tags() {
256            headers_map.insert("X-Source-Tags".to_string(), source_tags.join(","));
257        }
258
259        headers_map
260    }
261
262    /// Collects a snapshot for the given ping from storage and attach required meta information.
263    ///
264    /// # Arguments
265    ///
266    /// * `glean` - the [`Glean`] instance to collect data from.
267    /// * `ping` - the ping to collect for.
268    /// * `reason` - an optional reason code to include in the ping.
269    /// * `doc_id` - the ping's unique document identifier.
270    /// * `url_path` - the path on the server to upload this ping to.
271    ///
272    /// # Returns
273    ///
274    /// A fully assembled representation of the ping payload and associated metadata.
275    /// If there is no data stored for the ping, `None` is returned.
276    pub fn collect<'a>(
277        &self,
278        glean: &Glean,
279        ping: &'a PingType,
280        reason: Option<&str>,
281        doc_id: &'a str,
282        url_path: &'a str,
283    ) -> Option<Ping<'a>> {
284        info!("Collecting {}", ping.name());
285        let database = glean.storage();
286
287        let mut metrics_data = StorageManager.snapshot_as_json(database, ping.name(), true);
288
289        let events_data = glean
290            .event_storage()
291            .snapshot_as_json(glean, ping.name(), true);
292
293        // We're adding the metric `glean.ping.uploader_capabilities` the most manual way here.
294        // This avoids creating a `StringListMetric` and further indirection.
295        // It also avoids yet another database write.
296        // It's only added if
297        // (1) There's already data in `metrics` or `events`
298        // (2) or the ping should be sent empty (`send_if_empty=true`)
299        let uploader_capabilities = ping.uploader_capabilities();
300        if !uploader_capabilities.is_empty() {
301            if metrics_data.is_none() && (ping.send_if_empty() || events_data.is_some()) {
302                metrics_data = Some(json!({}))
303            }
304
305            if let Some(map) = metrics_data.as_mut().and_then(|o| o.as_object_mut()) {
306                let lists = map
307                    .entry("string_list")
308                    .or_insert_with(|| json!({}))
309                    .as_object_mut()
310                    .unwrap();
311
312                lists.insert(
313                    "glean.ping.uploader_capabilities".to_string(),
314                    json!(uploader_capabilities),
315                );
316            }
317        }
318
319        // Due to the way the experimentation identifier could link datasets that are intentionally unlinked,
320        // it will not be included in pings that specifically exclude the Glean client-id, those pings that
321        // should not be sent if empty, or pings that exclude the {client|ping}_info sections wholesale.
322        if (!ping.include_client_id() || !ping.send_if_empty() || !ping.include_info_sections())
323            && glean.test_get_experimentation_id().is_some()
324            && metrics_data.is_some()
325        {
326            // There is a lot of unwrapping here, but that's fine because the `if` conditions above mean that the
327            // experimentation id is present in the metrics.
328            let metrics = metrics_data.as_mut().unwrap().as_object_mut().unwrap();
329            let metrics_count = metrics.len();
330            let strings = metrics.get_mut("string").unwrap().as_object_mut().unwrap();
331            let string_count = strings.len();
332
333            // Handle the send_if_empty case by checking if the experimentation id is the only metric in the data.
334            let empty_payload = events_data.is_none() && metrics_count == 1 && string_count == 1;
335            if !ping.include_client_id() || (!ping.send_if_empty() && empty_payload) {
336                strings.remove("glean.client.annotation.experimentation_id");
337            }
338
339            if strings.is_empty() {
340                metrics.remove("string");
341            }
342
343            if metrics.is_empty() {
344                metrics_data = None;
345            }
346        }
347
348        let is_empty = metrics_data.is_none() && events_data.is_none();
349        if !ping.send_if_empty() && is_empty {
350            info!("Storage for {} empty. Bailing out.", ping.name());
351            return None;
352        } else if ping.name() == "events" && events_data.is_none() {
353            info!("No events for 'events' ping. Bailing out.");
354            return None;
355        } else if is_empty {
356            info!(
357                "Storage for {} empty. Ping will still be sent.",
358                ping.name()
359            );
360        }
361
362        let precision = if ping.precise_timestamps() {
363            TimeUnit::Millisecond
364        } else {
365            TimeUnit::Minute
366        };
367
368        let mut json = if ping.include_info_sections() {
369            let ping_info = self.get_ping_info(glean, ping.name(), reason, precision);
370            let client_info = self.get_client_info(glean, ping.include_client_id());
371
372            json!({
373                "ping_info": ping_info,
374                "client_info": client_info
375            })
376        } else {
377            json!({})
378        };
379
380        let json_obj = json.as_object_mut()?;
381        if let Some(metrics_data) = metrics_data {
382            json_obj.insert("metrics".to_string(), metrics_data);
383        }
384        if let Some(events_data) = events_data {
385            json_obj.insert("events".to_string(), events_data);
386        }
387
388        Some(Ping {
389            content: json,
390            name: ping.name(),
391            doc_id,
392            url_path,
393            headers: self.get_headers(glean),
394            includes_info_sections: ping.include_info_sections(),
395            schedules_pings: ping.schedules_pings().to_vec(),
396            uploader_capabilities: ping.uploader_capabilities().to_vec(),
397        })
398    }
399
400    /// Gets the path to a directory for ping storage.
401    ///
402    /// The directory will be created inside the `data_path`.
403    /// The `pings` directory (and its parents) is created if it does not exist.
404    fn get_pings_dir(&self, data_path: &Path, ping_type: Option<&str>) -> std::io::Result<PathBuf> {
405        // Use a special directory for deletion-request pings
406        let pings_dir = match ping_type {
407            Some("deletion-request") => data_path.join(DELETION_REQUEST_PINGS_DIRECTORY),
408            _ => data_path.join(PENDING_PINGS_DIRECTORY),
409        };
410
411        create_dir_all(&pings_dir)?;
412        Ok(pings_dir)
413    }
414
415    /// Gets path to a directory for temporary storage.
416    ///
417    /// The directory will be created inside the `data_path`.
418    /// The `tmp` directory (and its parents) is created if it does not exist.
419    fn get_tmp_dir(&self, data_path: &Path) -> std::io::Result<PathBuf> {
420        let pings_dir = data_path.join("tmp");
421        create_dir_all(&pings_dir)?;
422        Ok(pings_dir)
423    }
424
425    /// Stores a ping to disk in the pings directory.
426    pub fn store_ping(&self, data_path: &Path, ping: &Ping) -> std::io::Result<()> {
427        let pings_dir = self.get_pings_dir(data_path, Some(ping.name))?;
428        let temp_dir = self.get_tmp_dir(data_path)?;
429
430        // Write to a temporary location and then move when done,
431        // for transactional writes.
432        let temp_ping_path = temp_dir.join(ping.doc_id);
433        let ping_path = pings_dir.join(ping.doc_id);
434
435        log::debug!(
436            "Storing ping '{}' at '{}'",
437            ping.doc_id,
438            ping_path.display()
439        );
440
441        {
442            let mut file = File::create(&temp_ping_path)?;
443            file.write_all(ping.url_path.as_bytes())?;
444            file.write_all(b"\n")?;
445            file.write_all(::serde_json::to_string(&ping.content)?.as_bytes())?;
446            file.write_all(b"\n")?;
447            let metadata = PingMetadata {
448                // We don't actually need to clone the headers except to match PingMetadata's ownership.
449                // But since we're going to write a file to disk in a sec,
450                // and HeaderMaps tend to have only like two things in them, tops,
451                // the cost is bearable.
452                headers: Some(ping.headers.clone()),
453                body_has_info_sections: Some(ping.includes_info_sections),
454                ping_name: Some(ping.name.to_string()),
455                uploader_capabilities: Some(ping.uploader_capabilities.clone()),
456            };
457            file.write_all(::serde_json::to_string(&metadata)?.as_bytes())?;
458        }
459
460        if let Err(e) = std::fs::rename(&temp_ping_path, &ping_path) {
461            log::warn!(
462                "Unable to move '{}' to '{}",
463                temp_ping_path.display(),
464                ping_path.display()
465            );
466            return Err(e);
467        }
468
469        Ok(())
470    }
471
472    /// Clears any pending pings in the queue.
473    pub fn clear_pending_pings(&self, data_path: &Path, ping_names: &[&str]) -> Result<()> {
474        let pings_dir = self.get_pings_dir(data_path, None)?;
475
476        // TODO(bug 1932909): Refactor this into its own function
477        // and share it with `upload::directory`.
478        let entries = pings_dir.read_dir()?;
479        for entry in entries.filter_map(|entry| entry.ok()) {
480            if let Ok(file_type) = entry.file_type() {
481                if !file_type.is_file() {
482                    continue;
483                }
484            } else {
485                continue;
486            }
487
488            let file = match File::open(entry.path()) {
489                Ok(file) => file,
490                Err(_) => {
491                    continue;
492                }
493            };
494
495            let mut lines = BufReader::new(file).lines();
496            if let (Some(Ok(path)), Some(Ok(_body)), Ok(metadata)) =
497                (lines.next(), lines.next(), lines.next().transpose())
498            {
499                let PingMetadata { ping_name, .. } = metadata
500                    .and_then(|m| crate::upload::process_metadata(&path, &m))
501                    .unwrap_or_default();
502                let ping_name =
503                    ping_name.unwrap_or_else(|| path.split('/').nth(3).unwrap_or("").into());
504
505                if ping_names.contains(&&ping_name[..]) {
506                    _ = fs::remove_file(entry.path());
507                }
508            } else {
509                continue;
510            }
511        }
512
513        log::debug!("All pending pings deleted");
514
515        Ok(())
516    }
517}
518
519#[cfg(test)]
520mod test {
521    use super::*;
522    use crate::tests::new_glean;
523
524    #[test]
525    fn sequence_numbers_should_be_reset_when_toggling_uploading() {
526        let (mut glean, _t) = new_glean(None);
527        let ping_maker = PingMaker::new();
528
529        assert_eq!(0, ping_maker.get_ping_seq(&glean, "store1"));
530        assert_eq!(1, ping_maker.get_ping_seq(&glean, "store1"));
531
532        glean.set_upload_enabled(false);
533        assert_eq!(0, ping_maker.get_ping_seq(&glean, "store1"));
534        assert_eq!(0, ping_maker.get_ping_seq(&glean, "store1"));
535
536        glean.set_upload_enabled(true);
537        assert_eq!(0, ping_maker.get_ping_seq(&glean, "store1"));
538        assert_eq!(1, ping_maker.get_ping_seq(&glean, "store1"));
539    }
540
541    #[test]
542    fn test_server_knobs_config_appears_in_ping_info() {
543        use crate::metrics::RemoteSettingsConfig;
544        use std::collections::HashMap;
545
546        let (glean, _t) = new_glean(None);
547
548        // Apply complete Server Knobs config with all three fields
549        let mut metrics_enabled = HashMap::new();
550        metrics_enabled.insert("test.counter".to_string(), true);
551
552        let mut pings_enabled = HashMap::new();
553        pings_enabled.insert("custom".to_string(), false);
554
555        let config = RemoteSettingsConfig {
556            metrics_enabled,
557            pings_enabled,
558            event_threshold: Some(41),
559            session_sample_rate: None,
560            events_ping_acceleration_factor: Some(5),
561        };
562        glean.apply_server_knobs_config(config);
563
564        // Verify complete config structure appears in ping_info
565        let ping_maker = PingMaker::new();
566        let ping_info = ping_maker.get_ping_info(&glean, "store1", None, TimeUnit::Minute);
567
568        let server_knobs = &ping_info["server_knobs_config"];
569        assert_eq!(server_knobs["metrics_enabled"]["test.counter"], true);
570        assert_eq!(server_knobs["pings_enabled"]["custom"], false);
571        assert_eq!(server_knobs["event_threshold"], 41);
572        assert_eq!(server_knobs["events_ping_acceleration_factor"], 5);
573    }
574
575    #[test]
576    fn test_server_knobs_not_included_when_no_config() {
577        let (glean, _t) = new_glean(None);
578
579        let ping_maker = PingMaker::new();
580        let ping_info = ping_maker.get_ping_info(&glean, "store1", None, TimeUnit::Minute);
581
582        assert!(ping_info.get("server_knobs_config").is_none());
583    }
584
585    #[test]
586    fn test_server_knobs_appears_in_all_pings() {
587        use crate::metrics::RemoteSettingsConfig;
588        use std::collections::HashMap;
589
590        let (glean, _t) = new_glean(None);
591
592        let mut metrics_enabled = HashMap::new();
593        metrics_enabled.insert("test.counter".to_string(), true);
594
595        let config = RemoteSettingsConfig {
596            metrics_enabled,
597            ..Default::default()
598        };
599        glean.apply_server_knobs_config(config);
600
601        // Verify config appears in multiple different pings
602        let ping_maker = PingMaker::new();
603        let ping_info1 = ping_maker.get_ping_info(&glean, "store1", None, TimeUnit::Minute);
604        let ping_info2 = ping_maker.get_ping_info(&glean, "store2", None, TimeUnit::Minute);
605
606        assert_eq!(
607            ping_info1["server_knobs_config"]["metrics_enabled"]["test.counter"],
608            true
609        );
610        assert_eq!(
611            ping_info2["server_knobs_config"]["metrics_enabled"]["test.counter"],
612            true
613        );
614    }
615
616    #[test]
617    fn test_server_knobs_config_omits_empty_fields() {
618        use crate::metrics::RemoteSettingsConfig;
619        use std::collections::HashMap;
620
621        let (glean, _t) = new_glean(None);
622
623        // Apply config with only metrics_enabled set; pings_enabled and event_threshold are empty/None
624        let mut metrics_enabled = HashMap::new();
625        metrics_enabled.insert("test.counter".to_string(), true);
626
627        let config = RemoteSettingsConfig {
628            metrics_enabled,
629            ..Default::default()
630        };
631        glean.apply_server_knobs_config(config);
632
633        let ping_maker = PingMaker::new();
634        let ping_info = ping_maker.get_ping_info(&glean, "store1", None, TimeUnit::Minute);
635
636        let server_knobs = &ping_info["server_knobs_config"];
637        // metrics_enabled should be present
638        assert_eq!(server_knobs["metrics_enabled"]["test.counter"], true);
639        // pings_enabled and event_threshold should be absent (not empty object / null)
640        assert!(server_knobs.get("pings_enabled").is_none());
641        assert!(server_knobs.get("event_threshold").is_none());
642        assert!(server_knobs
643            .get("events_ping_acceleration_factor")
644            .is_none());
645    }
646}