blob: ef568b49af880cb031fb81edbd317ec1ae4ef0e6 [file] [log] [blame]
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07001/*
2 * Hotspot 2.0 - OSU client
3 * Copyright (c) 2013, Qualcomm Atheros, Inc.
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8
9#ifndef OSU_CLIENT_H
10#define OSU_CLIENT_H
11
12#define SPP_NS_URI "http://www.wi-fi.org/specifications/hotspot2dot0/v1.0/spp"
13
14#define URN_OMA_DM_DEVINFO "urn:oma:mo:oma-dm-devinfo:1.0"
15#define URN_OMA_DM_DEVDETAIL "urn:oma:mo:oma-dm-devdetail:1.0"
16#define URN_HS20_DEVDETAIL_EXT "urn:wfa:mo-ext:hotspot2dot0-devdetail-ext:1.0"
17#define URN_HS20_PPS "urn:wfa:mo:hotspot2dot0-perprovidersubscription:1.0"
18
19
20#define MAX_OSU_VALS 10
21
22struct osu_lang_text {
23 char lang[4];
24 char text[253];
25};
26
27struct hs20_osu_client {
28 struct xml_node_ctx *xml;
29 struct http_ctx *http;
30 int no_reconnect;
31 char pps_fname[300];
32 char *devid;
33 const char *result_file;
34 const char *summary_file;
35 const char *ifname;
36 const char *ca_fname;
37 char *fqdn;
38 char *server_url;
39 struct osu_lang_text friendly_name[MAX_OSU_VALS];
40 size_t friendly_name_count;
41 size_t icon_count;
42 char icon_filename[MAX_OSU_VALS][256];
43 u8 icon_hash[MAX_OSU_VALS][32];
44 int pps_cred_set;
45 int pps_updated;
46 int client_cert_present;
47 char **server_dnsname;
48 size_t server_dnsname_count;
49#define WORKAROUND_OCSP_OPTIONAL 0x00000001
50 unsigned long int workarounds;
51};
52
53
54/* osu_client.c */
55
56void write_result(struct hs20_osu_client *ctx, const char *fmt, ...)
57 __attribute__ ((format (printf, 2, 3)));
58void write_summary(struct hs20_osu_client *ctx, const char *fmt, ...)
59 __attribute__ ((format (printf, 2, 3)));
60
61void debug_dump_node(struct hs20_osu_client *ctx, const char *title,
62 xml_node_t *node);
63int osu_get_certificate(struct hs20_osu_client *ctx, xml_node_t *getcert);
64int hs20_add_pps_mo(struct hs20_osu_client *ctx, const char *uri,
65 xml_node_t *add_mo, char *fname, size_t fname_len);
66void get_user_pw(struct hs20_osu_client *ctx, xml_node_t *pps,
67 const char *alt_loc, char **user, char **pw);
68int update_pps_file(struct hs20_osu_client *ctx, const char *pps_fname,
69 xml_node_t *pps);
70void cmd_set_pps(struct hs20_osu_client *ctx, const char *pps_fname);
71
72
73/* spp_client.c */
74
75void spp_sub_rem(struct hs20_osu_client *ctx, const char *address,
76 const char *pps_fname, const char *ca_fname,
77 const char *client_cert, const char *client_key,
78 const char *cred_username, const char *cred_password,
79 xml_node_t *pps);
80void spp_pol_upd(struct hs20_osu_client *ctx, const char *address,
81 const char *pps_fname, const char *ca_fname,
82 const char *client_cert, const char *client_key,
83 const char *cred_username, const char *cred_password,
84 xml_node_t *pps);
85int cmd_prov(struct hs20_osu_client *ctx, const char *url,
86 const char *ca_fname);
87int cmd_sim_prov(struct hs20_osu_client *ctx, const char *url,
88 const char *ca_fname);
89
90
91/* oma_dm_client.c */
92
93int cmd_oma_dm_prov(struct hs20_osu_client *ctx, const char *url,
94 const char *ca_fname);
95int cmd_oma_dm_sim_prov(struct hs20_osu_client *ctx, const char *url,
96 const char *ca_fname);
97void oma_dm_sub_rem(struct hs20_osu_client *ctx, const char *address,
98 const char *pps_fname, const char *ca_fname,
99 const char *client_cert, const char *client_key,
100 const char *cred_username, const char *cred_password,
101 xml_node_t *pps);
102void oma_dm_pol_upd(struct hs20_osu_client *ctx, const char *address,
103 const char *pps_fname, const char *ca_fname,
104 const char *client_cert, const char *client_key,
105 const char *cred_username, const char *cred_password,
106 xml_node_t *pps);
107void cmd_oma_dm_sub_rem(struct hs20_osu_client *ctx, const char *address,
108 const char *pps_fname, const char *ca_fname);
109void cmd_oma_dm_add(struct hs20_osu_client *ctx, const char *pps_fname,
110 const char *add_fname);
111void cmd_oma_dm_replace(struct hs20_osu_client *ctx, const char *pps_fname,
112 const char *replace_fname);
113
114/* est.c */
115
116int est_load_cacerts(struct hs20_osu_client *ctx, const char *url);
117int est_build_csr(struct hs20_osu_client *ctx, const char *url);
118int est_simple_enroll(struct hs20_osu_client *ctx, const char *url,
119 const char *user, const char *pw);
120
121#endif /* OSU_CLIENT_H */