This file is indexed.

/usr/include/ubuntu/hardware/gps.h is in libubuntu-platform-hardware-api-headers 3.0.1+16.04.20160203-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/*
 * Copyright © 2013 Canonical Ltd.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Authored by: Daniel d'Andrada <daniel.dandrada@canonical.com>
 * Authored by: Thomas Voß <thomas.voss@canonical.com>
 */
#ifndef UBUNTU_HARDWARE_GPS_H_
#define UBUNTU_HARDWARE_GPS_H_

#include <ubuntu/visibility.h>

#include <stdint.h>
#include <stddef.h>

#ifdef __cplusplus
extern "C" {
#endif

/** \defgroup gps_access Functions and types for accessing GPS H/W. */

/**
 * Maximum number of SVs for u_hardware_gps_sv_status_callback().
 * \ingroup gps_access
 */
#define U_HARDWARE_GPS_MAX_SVS 32

/** 
 * The status of the GPS hardware.
 * \ingroup gps_access
 */
enum
{
    /** GPS status unknown. */
    U_HARDWARE_GPS_STATUS_NONE = 0,
    /** GPS has begun navigating. */
    U_HARDWARE_GPS_STATUS_SESSION_BEGIN = 1,
    /** GPS has stopped navigating. */
    U_HARDWARE_GPS_STATUS_SESSION_END = 2,
    /** GPS has powered on but is not navigating. */
    U_HARDWARE_GPS_STATUS_ENGINE_ON = 3,
    /** GPS is powered off. */
    U_HARDWARE_GPS_STATUS_ENGINE_OFF = 4
};

/**
 * Flags for the gps_set_capabilities callback.
 * \ingroup gps_access
 * GPS HAL schedules fixes for U_HARDWARE_GPS_POSITION_RECURRENCE_PERIODIC mode.
 * If this is not set, then the framework will use 1000ms for min_interval
 * and will start and call start() and stop() to schedule the GPS.
 */
#define U_HARDWARE_GPS_CAPABILITY_SCHEDULING       0x0000001
/** GPS supports MS-Based AGPS mode */
#define U_HARDWARE_GPS_CAPABILITY_MSB              0x0000002
/** GPS supports MS-Assisted AGPS mode */
#define U_HARDWARE_GPS_CAPABILITY_MSA              0x0000004
/** GPS supports single-shot fixes */
#define U_HARDWARE_GPS_CAPABILITY_SINGLE_SHOT      0x0000008
/** GPS supports on demand time injection */
#define U_HARDWARE_GPS_CAPABILITY_ON_DEMAND_TIME   0x0000010

/**
 * UHardwareGpsNiNotifyFlags constants
 * \ingroup gps_access
 */
typedef uint32_t UHardwareGpsNiNotifyFlags;
/** NI requires notification */
#define U_HARDWARE_GPS_NI_NEED_NOTIFY          0x0001
/** NI requires verification */
#define U_HARDWARE_GPS_NI_NEED_VERIFY          0x0002
/** NI requires privacy override, no notification/minimal trace */
#define U_HARDWARE_GPS_NI_PRIVACY_OVERRIDE     0x0004

/**
 * GPS NI responses, used to define the response in
 * NI structures
 * \ingroup gps_access
 */
typedef int UHardwareGpsUserResponseType;

enum
{
    U_HARDWARE_GPS_NI_RESPONSE_ACCEPT = 1,
    U_HARDWARE_GPS_NI_RESPONSE_DENY = 2,
    U_HARDWARE_GPS_NI_RESPONSE_NORESP = 3
};

enum
{
    U_HARDWARE_GPS_NI_TYPE_VOICE = 1,
    U_HARDWARE_GPS_NI_TYPE_UMTS_SUPL = 2,
    U_HARDWARE_GPS_NI_TYPE_UMTS_CTRL_PLANE = 3
};

/**
 * String length constants
 * \ingroup gps_access
 */
#define U_HARDWARE_GPS_NI_SHORT_STRING_MAXLEN      256
#define U_HARDWARE_GPS_NI_LONG_STRING_MAXLEN       2048

/**
 * NI data encoding scheme
 * \ingroup gps_access
 */
typedef int UHardwareGpsNiEncodingType;

/**
 * Known encoding types for Ni responses
 * \ingroup gps_access
 */
enum
{
    U_HARDWARE_GPS_ENC_NONE = 0,
    U_HARDWARE_GPS_ENC_SUPL_GSM_DEFAULT = 1,
    U_HARDWARE_GPS_ENC_SUPL_UTF8 = 2,
    U_HARDWARE_GPS_ENC_SUPL_UCS2 = 3,
    U_HARDWARE_GPS_ENC_UNKNOWN   = -1
};

/**
 * Known AGPS types
 * \ingroup gps_access
 */
enum
{
    U_HARDWARE_GPS_AGPS_TYPE_SUPL = 1,
    U_HARDWARE_GPS_AGPS_TYPE_C2K = 2
};

/**
 * Known positioning modes
 * \ingroup gps_access
 */
enum
{
    /** Mode for running GPS standalone (no assistance). */
    U_HARDWARE_GPS_POSITION_MODE_STANDALONE = 0,
    /** AGPS MS-Based mode. */
    U_HARDWARE_GPS_POSITION_MODE_MS_BASED = 1,
    /** AGPS MS-Assisted mode. */
    U_HARDWARE_GPS_POSITION_MODE_MS_ASSISTED = 2
};

/**
 * Known positioning modes
 * \ingroup gps_access
 */
enum
{
    /** Receive GPS fixes on a recurring basis at a specified period. */
    U_HARDWARE_GPS_POSITION_RECURRENCE_PERIODIC = 0,
    /** Request a single shot GPS fix. */
    U_HARDWARE_GPS_POSITION_RECURRENCE_SINGLE = 1
};

enum
{
    /** GPS requests data connection for AGPS. */
    U_HARDWARE_GPS_REQUEST_AGPS_DATA_CONN = 1,
    /** GPS releases the AGPS data connection. */
    U_HARDWARE_GPS_RELEASE_AGPS_DATA_CONN = 2,
    /** AGPS data connection initiated */
    U_HARDWARE_GPS_AGPS_DATA_CONNECTED = 3,
    /** AGPS data connection completed */
    U_HARDWARE_GPS_AGPS_DATA_CONN_DONE = 4,
    /** AGPS data connection failed */
    U_HARDWARE_GPS_AGPS_DATA_CONN_FAILED = 5
};

/** Flags used to specify which aiding data to delete
    when calling delete_aiding_data(). */
typedef uint16_t UHardwareGpsAidingData;

#define U_HARDWARE_GPS_DELETE_EPHEMERIS        0x0001
#define U_HARDWARE_GPS_DELETE_ALMANAC          0x0002
#define U_HARDWARE_GPS_DELETE_POSITION         0x0004
#define U_HARDWARE_GPS_DELETE_TIME             0x0008
#define U_HARDWARE_GPS_DELETE_IONO             0x0010
#define U_HARDWARE_GPS_DELETE_UTC              0x0020
#define U_HARDWARE_GPS_DELETE_HEALTH           0x0040
#define U_HARDWARE_GPS_DELETE_SVDIR            0x0080
#define U_HARDWARE_GPS_DELETE_SVSTEER          0x0100
#define U_HARDWARE_GPS_DELETE_SADATA           0x0200
#define U_HARDWARE_GPS_DELETE_RTI              0x0400
#define U_HARDWARE_GPS_DELETE_CELLDB_INFO      0x8000
#define U_HARDWARE_GPS_DELETE_ALL              0xFFFF

/** AGPS type */
typedef uint16_t UHardwareGpsAGpsType;
#define U_HARDWARE_GPS_AGPS_TYPE_SUPL          1
#define U_HARDWARE_GPS_AGPS_TYPE_C2K           2

/** Known types for AGps reference locations. */
/** A GSM cell ID. */
#define U_HARDWARE_GPS_AGPS_REF_LOCATION_TYPE_GSM_CELLID   1
/** A UMTS cell ID. */
#define U_HARDWARE_GPS_AGPS_REF_LOCATION_TYPE_UMTS_CELLID  2
/** The BSSID of a visible access point. */
#define U_HARDWARE_GPS_AGPS_REG_LOCATION_TYPE_MAC          3

/** UHardwareGpsLocation has valid latitude and longitude. */
#define U_HARDWARE_GPS_LOCATION_HAS_LAT_LONG   0x0001
/** UHardwareGpsLocation has valid altitude. */
#define U_HARDWARE_GPS_LOCATION_HAS_ALTITUDE   0x0002
/** UHardwareGpsLocation has valid speed. */
#define U_HARDWARE_GPS_LOCATION_HAS_SPEED      0x0004
/** UHardwareGpsLocation has valid bearing. */
#define U_HARDWARE_GPS_LOCATION_HAS_BEARING    0x0008
/** UHardwareGpsLocation has valid accuracy. */
#define U_HARDWARE_GPS_LOCATION_HAS_ACCURACY   0x0010

typedef struct UHardwareGps_* UHardwareGps;

/**
 * Models a location as reported by the GPS HAL.
 * \ingroup gps_access
 */
typedef struct
{
    /** set to sizeof(UHardwareGpsLocation) */
    size_t size;
    /** Contains U_HARDWARE_GPS_LOCATION_* flags bits. */
    uint16_t flags;
    /** Represents latitude in degrees. */
    double latitude;
    /** Represents longitude in degrees. */
    double longitude;
    /** Represents altitude in meters above the WGS 84 reference ellipsoid. */
    double altitude;
    /** Represents speed in meters per second. */
    float speed;
    /** Represents heading in degrees. */
    float bearing;
    /** Represents expected accuracy in meters. */
    float accuracy;
    /** Timestamp for the location fix, in milliseconds since January 1, 1970 */
    int64_t timestamp;
} UHardwareGpsLocation;

/**
 * Represents space vehicle (satellite) information.
 * \ingroup gps_access
 */
typedef struct {
    /** set to sizeof(UHardwareGpsSvInfo) */
    size_t size;
    /** Pseudo-random number for the SV. */
    int prn;
    /** Signal to noise ratio. */
    float snr;
    /** Elevation of SV in degrees. */
    float elevation;
    /** Azimuth of SV in degrees. */
    float azimuth;
} UHardwareGpsSvInfo;

/**
 * Represents SV (Space Vehicle) status.
 * \ingroup gps_access
 */
typedef struct {
    /** set to sizeof(GpsSvStatus) */
    size_t size;

    /** Number of SVs currently visible. */
    int num_svs;

    /** Contains an array of SV information. */
    UHardwareGpsSvInfo sv_list[U_HARDWARE_GPS_MAX_SVS];

    /** Represents a bit mask indicating which SVs
     * have ephemeris data.
     */
    uint32_t ephemeris_mask;

    /** Represents a bit mask indicating which SVs
     * have almanac data.
     */
    uint32_t almanac_mask;

    /**
     * Represents a bit mask indicating which SVs
     * were used for computing the most recent position fix.
     */
    uint32_t used_in_fix_mask;
} UHardwareGpsSvStatus;

/**
 * Represents the status of AGPS.
 * \ingroup gps_access
 */
typedef struct {
    /** set to sizeof(UHardwareGpsAGpsStatus) */
    size_t size;

    uint16_t type;
    uint16_t status;
    uint32_t ipaddr;
} UHardwareGpsAGpsStatus;

/** \brief Describes a cell ID as understood by the GPS chipset. */
typedef struct
{
    /** One of:
     * U_HARDWARE_GPS_AGPS_REF_LOCATION_TYPE_GSM_CELLID
     * U_HARDWARE_GPS_AGPS_REF_LOCATION_TYPE_UMTS_CELLID
     */
    uint16_t type;
    /** Mobile country code. */
    uint16_t mcc;
    /** Mobile network code. */
    uint16_t mnc;
    /** Location area code. */
    uint16_t lac;
    /** The actual cell id. */
    uint32_t cid;
} UHardwareGpsAGpsRefLocationCellID;

/** \brief Describes a wifi ID as understood by the GPS chipset. */
typedef struct
{
    /** The MAC address/BSSID of an AP. */
    uint8_t mac[6];
} UHardwareGpsAGpsRefLocationMac;

/** @brief Describes a reference location, either a radio cell or a wifi. */
typedef struct
{
    /** One of:
     * U_HARDWARE_GPS_AGPS_REF_LOCATION_TYPE_GSM_CELLID
     * U_HARDWARE_GPS_AGPS_REF_LOCATION_TYPE_UMTS_CELLID
     * U_HARDWARE_GPS_AGPS_REG_LOCATION_TYPE_MAC
     */
    uint16_t type;
    union {
        UHardwareGpsAGpsRefLocationCellID   cellID;
        UHardwareGpsAGpsRefLocationMac      mac;
    } u;
} UHardwareGpsAGpsRefLocation;

/**
 * Represents an NI request
 * \ingroup gps_access
 */
typedef struct {
    /** set to sizeof(UHardwareGpsNiNotification) */
    size_t size;

    /**
     * An ID generated by HAL to associate NI notifications and UI
     * responses
     */
    int notification_id;

    /**
     * An NI type used to distinguish different categories of NI
     * events, such as U_HARDWARE_GPS_NI_TYPE_VOICE, U_HARDWARE_GPS_NI_TYPE_UMTS_SUPL, ...
     */
    uint32_t ni_type;

    /**
     * Notification/verification options, combinations of UHardwareGpsNiNotifyFlags constants
     */
    UHardwareGpsNiNotifyFlags notify_flags;

    /**
     * Timeout period to wait for user response.
     * Set to 0 for no time out limit.
     */
    int timeout;

    /**
     * Default response when time out.
     */
    UHardwareGpsUserResponseType default_response;

    /**
     * Requestor ID
     */
    char requestor_id[U_HARDWARE_GPS_NI_SHORT_STRING_MAXLEN];

    /**
     * Notification message. It can also be used to store client_id in some cases
     */
    char text[U_HARDWARE_GPS_NI_LONG_STRING_MAXLEN];

    /**
     * Client name decoding scheme
     */
    UHardwareGpsNiEncodingType requestor_id_encoding;

    /**
     * Client name decoding scheme
     */
    UHardwareGpsNiEncodingType text_encoding;

    /**
     * A pointer to extra data. Format:
     * key_1 = value_1
     * key_2 = value_2
     */
    char extras[U_HARDWARE_GPS_NI_LONG_STRING_MAXLEN];

} UHardwareGpsNiNotification;

typedef void (*UHardwareGpsLocationCallback)(UHardwareGpsLocation *location, void *context);
typedef void (*UHardwareGpsStatusCallback)(uint16_t status, void *context);
typedef void (*UHardwareGpsSvStatusCallback)(UHardwareGpsSvStatus *sv_info, void *context);
typedef void (*UHardwareGpsNmeaCallback)(int64_t timestamp, const char *nmea, int length, void *context);
typedef void (*UHardwareGpsSetCapabilities)(uint32_t capabilities, void *context);
typedef void (*UHardwareGpsRequestUtcTime)(void *context);

/** Callback to request the client to download XTRA data. The client should download XTRA data and inject it by calling inject_xtra_data(). */
typedef void (*UHardwareGpsXtraDownloadRequest)(void *context);

/** Callback with AGPS status information. */
typedef void (*UHardwareGpsAGpsStatusCallback)(UHardwareGpsAGpsStatus *status, void *context);

/** Callback with NI notification. */
typedef void (*UHardwareGpsNiNotifyCallback)(UHardwareGpsNiNotification *notification, void *context);

/** Callback invoked by the driver to set the set id. */
typedef void (*UHardwareGpsAGpsRilRequestSetId)(uint32_t flags, void *context);
/** Callback invoked by the driver to request a reference location (typically cell ID). */
typedef void (*UHardwareGpsAGpsRilRequestRefLoc)(uint32_t flags, void *context);

typedef struct
{

    UHardwareGpsLocationCallback location_cb;
    UHardwareGpsStatusCallback status_cb;
    UHardwareGpsSvStatusCallback sv_status_cb;
    UHardwareGpsNmeaCallback nmea_cb;
    UHardwareGpsSetCapabilities set_capabilities_cb;
    UHardwareGpsRequestUtcTime request_utc_time_cb;

    UHardwareGpsXtraDownloadRequest xtra_download_request_cb;

    UHardwareGpsAGpsStatusCallback agps_status_cb;

    UHardwareGpsNiNotifyCallback gps_ni_notify_cb;

    UHardwareGpsAGpsRilRequestSetId request_setid_cb;
    UHardwareGpsAGpsRilRequestRefLoc request_refloc_cb;

    void* context;
} UHardwareGpsParams;

/*
 You must create only one instance per process/application.
*/
UBUNTU_DLL_PUBLIC UHardwareGps
u_hardware_gps_new(UHardwareGpsParams *params);

UBUNTU_DLL_PUBLIC void
u_hardware_gps_delete(UHardwareGps handle);

UBUNTU_DLL_PUBLIC bool
u_hardware_gps_start(UHardwareGps self);

UBUNTU_DLL_PUBLIC bool
u_hardware_gps_stop(UHardwareGps self);

/** \brief Injects a new reference time into the GPS chipset.
 *  \param time NTP time, in milliseconds since Jan 1st 1970.
 *  \param time_reference time from the internal clock at the moment that NTP time was taken.
 *  \param uncertainty possible deviation in the time supplied (uncertainty) in milliseconds.
 */
UBUNTU_DLL_PUBLIC void
u_hardware_gps_inject_time(
    UHardwareGps self,
    int64_t time,
    int64_t time_reference,
    int uncertainty);

/**
  * \brief Injects a new reference location into the GPS chipset.
  * \param self The instance to apply the change to.
  * \param location New location to me injected. The structure must have the following details, any others are ignored:
  *    - location: New coordinate, in [°].
  *    - longitude: New coordinate, [°].
  *    - accuracy: Accuracy estimate of the location, in [m].
  */
UBUNTU_DLL_PUBLIC void
u_hardware_gps_inject_location(
    UHardwareGps self,
    UHardwareGpsLocation location);

/**
  * \brief Informs the GPS chipset about wifi ap's or radio cells to be used in AGPS calls.
  * \param self The instance to inform.
  * \param location The reference location, that is a wifi ap or a radio cell.
  * \param size_of_struct The size of the reference location struct.
  */
UBUNTU_DLL_PUBLIC void
u_hardware_gps_agps_set_reference_location(
    UHardwareGps self,
    UHardwareGpsAGpsRefLocation *location,
    size_t size_of_struct);

/**
  * \brief Notifies the chipset that a data connection is availble.
  * \param self The instance to be notified.
  * \param apn Name of the apn to be used for SUPL.
  */
UBUNTU_DLL_PUBLIC void
u_hardware_gps_agps_notify_connection_is_open(
    UHardwareGps self,
    const char *apn);

/**
  * \brief Notifies the chipset that an AGPS data connection has been closed.
  * \param self The instance to be notified.
  */
UBUNTU_DLL_PUBLIC void
u_hardware_gps_agps_notify_connection_is_closed(
    UHardwareGps self);

/**
  * \brief Notifies the chipset that an AGPS data connection is not available.
  * \param self The instance to be notified.
  */
UBUNTU_DLL_PUBLIC void
u_hardware_gps_agps_notify_connection_not_available(
        UHardwareGps self);

/**
  * \brief Sets the hostname and port for the AGPS server.
  * \param self The instance to be altered.
  * \param type Type of the server, one of U_HARDWARE_GPS_AGPS_TYPE_SUPL or U_HARDWARE_GPS_AGPS_TYPE_C2K.
  * \param hostname The hostname of the AGPS server.
  * \param port The post of the AGPS server.
  */
UBUNTU_DLL_PUBLIC void
u_hardware_gps_agps_set_server_for_type(
        UHardwareGps self,
        UHardwareGpsAGpsType type,
        const char* hostname,
        uint16_t port);

/**
  * \brief Requests the chipset to delete the aiding data specified in flags.
  * \param self The instance to apply the change to.
  * \param flags Specifies the aiding data that should be deleted.
  */
UBUNTU_DLL_PUBLIC void
u_hardware_gps_delete_aiding_data(
    UHardwareGps self,
    UHardwareGpsAidingData flags);

/**
 * \brief Sets the positioning mode of the chipset.
 * \param mode One of the U_HARDWARE_GPS_POSITION_MODE_* values
 * \param recurrence One of the U_HARDWARE_GPS_POSITION_RECURRENCE_* values
 * \param min_interval represents the time between fixes in milliseconds.
 * \param preferred_accuracy The requested fix accuracy in meters. Can be zero.
 * \param preferred_time The requested time to first fix in milliseconds. Can be zero.
 */
UBUNTU_DLL_PUBLIC bool
u_hardware_gps_set_position_mode(
    UHardwareGps self,
    uint32_t mode,
    uint32_t recurrence,
    uint32_t min_interval,
    uint32_t preferred_accuracy,
    uint32_t preferred_time);

UBUNTU_DLL_PUBLIC void
u_hardware_gps_inject_xtra_data(
    UHardwareGps self,
    char* data,
    int length);

#ifdef __cplusplus
}
#endif

#endif // UBUNTU_HARDWARE_GPS_H_