2 * hostapd / ubus support
3 * Copyright (c) 2013, Felix Fietkau <nbd@nbd.name>
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
9 #include "utils/includes.h"
10 #include "utils/common.h"
11 #include "utils/eloop.h"
12 #include "utils/wpabuf.h"
13 #include "common/ieee802_11_defs.h"
14 #include "common/hw_features_common.h"
16 #include "neighbor_db.h"
17 #include "wps_hostapd.h"
20 #include "ap_drv_ops.h"
25 #include "airtime_policy.h"
26 #include "hw_features.h"
28 static struct ubus_context
*ctx
;
29 static struct blob_buf b
;
32 static inline struct hostapd_data
*get_hapd_from_object(struct ubus_object
*obj
)
34 return container_of(obj
, struct hostapd_data
, ubus
.obj
);
37 struct ubus_banned_client
{
42 static void ubus_reconnect_timeout(void *eloop_data
, void *user_ctx
)
44 if (ubus_reconnect(ctx
, NULL
)) {
45 eloop_register_timeout(1, 0, ubus_reconnect_timeout
, ctx
, NULL
);
52 static void hostapd_ubus_connection_lost(struct ubus_context
*ctx
)
54 uloop_fd_delete(&ctx
->sock
);
55 eloop_register_timeout(1, 0, ubus_reconnect_timeout
, ctx
, NULL
);
58 static bool hostapd_ubus_init(void)
64 ctx
= ubus_connect(NULL
);
68 ctx
->connection_lost
= hostapd_ubus_connection_lost
;
74 static void hostapd_ubus_ref_inc(void)
79 static void hostapd_ubus_ref_dec(void)
88 uloop_fd_delete(&ctx
->sock
);
93 void hostapd_ubus_add_iface(struct hostapd_iface
*iface
)
95 if (!hostapd_ubus_init())
99 void hostapd_ubus_free_iface(struct hostapd_iface
*iface
)
105 static void hostapd_notify_ubus(struct ubus_object
*obj
, char *bssname
, char *event
)
112 if (asprintf(&event_type
, "bss.%s", event
) < 0)
115 blob_buf_init(&b
, 0);
116 blobmsg_add_string(&b
, "name", bssname
);
117 ubus_notify(ctx
, obj
, event_type
, b
.head
, -1);
122 hostapd_bss_del_ban(void *eloop_data
, void *user_ctx
)
124 struct ubus_banned_client
*ban
= eloop_data
;
125 struct hostapd_data
*hapd
= user_ctx
;
127 avl_delete(&hapd
->ubus
.banned
, &ban
->avl
);
132 hostapd_bss_ban_client(struct hostapd_data
*hapd
, u8
*addr
, int time
)
134 struct ubus_banned_client
*ban
;
139 ban
= avl_find_element(&hapd
->ubus
.banned
, addr
, ban
, avl
);
144 ban
= os_zalloc(sizeof(*ban
));
145 memcpy(ban
->addr
, addr
, sizeof(ban
->addr
));
146 ban
->avl
.key
= ban
->addr
;
147 avl_insert(&hapd
->ubus
.banned
, &ban
->avl
);
149 eloop_cancel_timeout(hostapd_bss_del_ban
, ban
, hapd
);
151 hostapd_bss_del_ban(ban
, hapd
);
156 eloop_register_timeout(0, time
* 1000, hostapd_bss_del_ban
, ban
, hapd
);
160 hostapd_bss_reload(struct ubus_context
*ctx
, struct ubus_object
*obj
,
161 struct ubus_request_data
*req
, const char *method
,
162 struct blob_attr
*msg
)
164 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
166 return hostapd_reload_config(hapd
->iface
);
171 hostapd_parse_vht_map_blobmsg(uint16_t map
)
177 for (i
= 0; i
< 8; i
++) {
178 snprintf(label
, 4, "%dss", i
+ 1);
180 val
= (map
& (BIT(1) | BIT(0))) + 7;
181 blobmsg_add_u16(&b
, label
, val
== 10 ? -1 : val
);
187 hostapd_parse_vht_capab_blobmsg(struct ieee80211_vht_capabilities
*vhtc
)
193 static const struct {
197 { "su_beamformee", VHT_CAP_SU_BEAMFORMEE_CAPABLE
},
198 { "mu_beamformee", VHT_CAP_MU_BEAMFORMEE_CAPABLE
},
201 for (i
= 0; i
< ARRAY_SIZE(vht_capas
); i
++)
202 blobmsg_add_u8(&b
, vht_capas
[i
].name
,
203 !!(vhtc
->vht_capabilities_info
& vht_capas
[i
].flag
));
205 supported_mcs
= blobmsg_open_table(&b
, "mcs_map");
208 map
= blobmsg_open_table(&b
, "rx");
209 hostapd_parse_vht_map_blobmsg(le_to_host16(vhtc
->vht_supported_mcs_set
.rx_map
));
210 blobmsg_close_table(&b
, map
);
213 map
= blobmsg_open_table(&b
, "tx");
214 hostapd_parse_vht_map_blobmsg(le_to_host16(vhtc
->vht_supported_mcs_set
.tx_map
));
215 blobmsg_close_table(&b
, map
);
217 blobmsg_close_table(&b
, supported_mcs
);
221 hostapd_parse_capab_blobmsg(struct sta_info
*sta
)
225 v
= blobmsg_open_table(&b
, "capabilities");
227 if (sta
->vht_capabilities
) {
228 r
= blobmsg_open_table(&b
, "vht");
229 hostapd_parse_vht_capab_blobmsg(sta
->vht_capabilities
);
230 blobmsg_close_table(&b
, r
);
233 /* ToDo: Add HT / HE capability parsing */
235 blobmsg_close_table(&b
, v
);
239 hostapd_bss_get_clients(struct ubus_context
*ctx
, struct ubus_object
*obj
,
240 struct ubus_request_data
*req
, const char *method
,
241 struct blob_attr
*msg
)
243 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
244 struct hostap_sta_driver_data sta_driver_data
;
245 struct sta_info
*sta
;
248 static const struct {
252 { "auth", WLAN_STA_AUTH
},
253 { "assoc", WLAN_STA_ASSOC
},
254 { "authorized", WLAN_STA_AUTHORIZED
},
255 { "preauth", WLAN_STA_PREAUTH
},
256 { "wds", WLAN_STA_WDS
},
257 { "wmm", WLAN_STA_WMM
},
258 { "ht", WLAN_STA_HT
},
259 { "vht", WLAN_STA_VHT
},
260 { "he", WLAN_STA_HE
},
261 { "wps", WLAN_STA_WPS
},
262 { "mfp", WLAN_STA_MFP
},
265 blob_buf_init(&b
, 0);
266 blobmsg_add_u32(&b
, "freq", hapd
->iface
->freq
);
267 list
= blobmsg_open_table(&b
, "clients");
268 for (sta
= hapd
->sta_list
; sta
; sta
= sta
->next
) {
272 sprintf(mac_buf
, MACSTR
, MAC2STR(sta
->addr
));
273 c
= blobmsg_open_table(&b
, mac_buf
);
274 for (i
= 0; i
< ARRAY_SIZE(sta_flags
); i
++)
275 blobmsg_add_u8(&b
, sta_flags
[i
].name
,
276 !!(sta
->flags
& sta_flags
[i
].flag
));
279 blobmsg_add_u8(&b
, "mbo", !!(sta
->cell_capa
));
282 r
= blobmsg_open_array(&b
, "rrm");
283 for (i
= 0; i
< ARRAY_SIZE(sta
->rrm_enabled_capa
); i
++)
284 blobmsg_add_u32(&b
, "", sta
->rrm_enabled_capa
[i
]);
285 blobmsg_close_array(&b
, r
);
287 r
= blobmsg_open_array(&b
, "extended_capabilities");
288 /* Check if client advertises extended capabilities */
289 if (sta
->ext_capability
&& sta
->ext_capability
[0] > 0) {
290 for (i
= 0; i
< sta
->ext_capability
[0]; i
++) {
291 blobmsg_add_u32(&b
, "", sta
->ext_capability
[1 + i
]);
294 blobmsg_close_array(&b
, r
);
296 blobmsg_add_u32(&b
, "aid", sta
->aid
);
297 #ifdef CONFIG_TAXONOMY
298 r
= blobmsg_alloc_string_buffer(&b
, "signature", 1024);
299 if (retrieve_sta_taxonomy(hapd
, sta
, r
, 1024) > 0)
300 blobmsg_add_string_buffer(&b
);
303 /* Driver information */
304 if (hostapd_drv_read_sta_data(hapd
, &sta_driver_data
, sta
->addr
) >= 0) {
305 r
= blobmsg_open_table(&b
, "bytes");
306 blobmsg_add_u64(&b
, "rx", sta_driver_data
.rx_bytes
);
307 blobmsg_add_u64(&b
, "tx", sta_driver_data
.tx_bytes
);
308 blobmsg_close_table(&b
, r
);
309 r
= blobmsg_open_table(&b
, "airtime");
310 blobmsg_add_u64(&b
, "rx", sta_driver_data
.rx_airtime
);
311 blobmsg_add_u64(&b
, "tx", sta_driver_data
.tx_airtime
);
312 blobmsg_close_table(&b
, r
);
313 r
= blobmsg_open_table(&b
, "packets");
314 blobmsg_add_u32(&b
, "rx", sta_driver_data
.rx_packets
);
315 blobmsg_add_u32(&b
, "tx", sta_driver_data
.tx_packets
);
316 blobmsg_close_table(&b
, r
);
317 r
= blobmsg_open_table(&b
, "rate");
319 blobmsg_add_u32(&b
, "rx", sta_driver_data
.current_rx_rate
* 100);
320 blobmsg_add_u32(&b
, "tx", sta_driver_data
.current_tx_rate
* 100);
321 blobmsg_close_table(&b
, r
);
322 blobmsg_add_u32(&b
, "signal", sta_driver_data
.signal
);
325 hostapd_parse_capab_blobmsg(sta
);
327 blobmsg_close_table(&b
, c
);
329 blobmsg_close_array(&b
, list
);
330 ubus_send_reply(ctx
, req
, b
.head
);
336 hostapd_bss_get_features(struct ubus_context
*ctx
, struct ubus_object
*obj
,
337 struct ubus_request_data
*req
, const char *method
,
338 struct blob_attr
*msg
)
340 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
342 blob_buf_init(&b
, 0);
343 blobmsg_add_u8(&b
, "ht_supported", ht_supported(hapd
->iface
->hw_features
));
344 blobmsg_add_u8(&b
, "vht_supported", vht_supported(hapd
->iface
->hw_features
));
345 ubus_send_reply(ctx
, req
, b
.head
);
351 hostapd_bss_get_status(struct ubus_context
*ctx
, struct ubus_object
*obj
,
352 struct ubus_request_data
*req
, const char *method
,
353 struct blob_attr
*msg
)
355 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
356 void *airtime_table
, *dfs_table
, *rrm_table
, *wnm_table
;
357 struct os_reltime now
;
358 char ssid
[SSID_MAX_LEN
+ 1];
360 size_t ssid_len
= SSID_MAX_LEN
;
361 u8 channel
= 0, op_class
= 0;
363 if (hapd
->conf
->ssid
.ssid_len
< SSID_MAX_LEN
)
364 ssid_len
= hapd
->conf
->ssid
.ssid_len
;
366 ieee80211_freq_to_channel_ext(hapd
->iface
->freq
,
367 hapd
->iconf
->secondary_channel
,
368 hostapd_get_oper_chwidth(hapd
->iconf
),
369 &op_class
, &channel
);
371 blob_buf_init(&b
, 0);
372 blobmsg_add_string(&b
, "driver", hapd
->driver
->name
);
373 blobmsg_add_string(&b
, "status", hostapd_state_text(hapd
->iface
->state
));
374 blobmsg_printf(&b
, "bssid", MACSTR
, MAC2STR(hapd
->conf
->bssid
));
376 memset(ssid
, 0, SSID_MAX_LEN
+ 1);
377 memcpy(ssid
, hapd
->conf
->ssid
.ssid
, ssid_len
);
378 blobmsg_add_string(&b
, "ssid", ssid
);
380 blobmsg_add_u32(&b
, "freq", hapd
->iface
->freq
);
381 blobmsg_add_u32(&b
, "channel", channel
);
382 blobmsg_add_u32(&b
, "op_class", op_class
);
383 blobmsg_add_u32(&b
, "beacon_interval", hapd
->iconf
->beacon_int
);
384 #ifdef CONFIG_IEEE80211AX
385 blobmsg_add_u32(&b
, "bss_color", hapd
->iface
->conf
->he_op
.he_bss_color_disabled
? -1 :
386 hapd
->iface
->conf
->he_op
.he_bss_color
);
388 blobmsg_add_u32(&b
, "bss_color", -1);
391 snprintf(phy_name
, 17, "%s", hapd
->iface
->phy
);
392 blobmsg_add_string(&b
, "phy", phy_name
);
395 rrm_table
= blobmsg_open_table(&b
, "rrm");
396 blobmsg_add_u64(&b
, "neighbor_report_tx", hapd
->openwrt_stats
.rrm
.neighbor_report_tx
);
397 blobmsg_close_table(&b
, rrm_table
);
400 wnm_table
= blobmsg_open_table(&b
, "wnm");
401 blobmsg_add_u64(&b
, "bss_transition_query_rx", hapd
->openwrt_stats
.wnm
.bss_transition_query_rx
);
402 blobmsg_add_u64(&b
, "bss_transition_request_tx", hapd
->openwrt_stats
.wnm
.bss_transition_request_tx
);
403 blobmsg_add_u64(&b
, "bss_transition_response_rx", hapd
->openwrt_stats
.wnm
.bss_transition_response_rx
);
404 blobmsg_close_table(&b
, wnm_table
);
407 airtime_table
= blobmsg_open_table(&b
, "airtime");
408 blobmsg_add_u64(&b
, "time", hapd
->iface
->last_channel_time
);
409 blobmsg_add_u64(&b
, "time_busy", hapd
->iface
->last_channel_time_busy
);
410 blobmsg_add_u16(&b
, "utilization", hapd
->iface
->channel_utilization
);
411 blobmsg_close_table(&b
, airtime_table
);
414 dfs_table
= blobmsg_open_table(&b
, "dfs");
415 blobmsg_add_u32(&b
, "cac_seconds", hapd
->iface
->dfs_cac_ms
/ 1000);
416 blobmsg_add_u8(&b
, "cac_active", !!(hapd
->iface
->cac_started
));
417 os_reltime_age(&hapd
->iface
->dfs_cac_start
, &now
);
418 blobmsg_add_u32(&b
, "cac_seconds_left",
419 hapd
->iface
->cac_started
? hapd
->iface
->dfs_cac_ms
/ 1000 - now
.sec
: 0);
420 blobmsg_close_table(&b
, dfs_table
);
422 ubus_send_reply(ctx
, req
, b
.head
);
432 static const struct blobmsg_policy notify_policy
[__NOTIFY_MAX
] = {
433 [NOTIFY_RESPONSE
] = { "notify_response", BLOBMSG_TYPE_INT32
},
437 hostapd_notify_response(struct ubus_context
*ctx
, struct ubus_object
*obj
,
438 struct ubus_request_data
*req
, const char *method
,
439 struct blob_attr
*msg
)
441 struct blob_attr
*tb
[__NOTIFY_MAX
];
442 struct hostapd_data
*hapd
= get_hapd_from_object(obj
);
443 struct wpabuf
*elems
;
447 blobmsg_parse(notify_policy
, __NOTIFY_MAX
, tb
,
448 blob_data(msg
), blob_len(msg
));
450 if (!tb
[NOTIFY_RESPONSE
])
451 return UBUS_STATUS_INVALID_ARGUMENT
;
453 hapd
->ubus
.notify_response
= blobmsg_get_u32(tb
[NOTIFY_RESPONSE
]);
455 return UBUS_STATUS_OK
;
466 static const struct blobmsg_policy del_policy
[__DEL_CLIENT_MAX
] = {
467 [DEL_CLIENT_ADDR
] = { "addr", BLOBMSG_TYPE_STRING
},
468 [DEL_CLIENT_REASON
] = { "reason", BLOBMSG_TYPE_INT32
},
469 [DEL_CLIENT_DEAUTH
] = { "deauth", BLOBMSG_TYPE_INT8
},
470 [DEL_CLIENT_BAN_TIME
] = { "ban_time", BLOBMSG_TYPE_INT32
},
474 hostapd_bss_del_client(struct ubus_context
*ctx
, struct ubus_object
*obj
,
475 struct ubus_request_data
*req
, const char *method
,
476 struct blob_attr
*msg
)
478 struct blob_attr
*tb
[__DEL_CLIENT_MAX
];
479 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
480 struct sta_info
*sta
;
485 blobmsg_parse(del_policy
, __DEL_CLIENT_MAX
, tb
, blob_data(msg
), blob_len(msg
));
487 if (!tb
[DEL_CLIENT_ADDR
])
488 return UBUS_STATUS_INVALID_ARGUMENT
;
490 if (hwaddr_aton(blobmsg_data(tb
[DEL_CLIENT_ADDR
]), addr
))
491 return UBUS_STATUS_INVALID_ARGUMENT
;
493 if (tb
[DEL_CLIENT_REASON
])
494 reason
= blobmsg_get_u32(tb
[DEL_CLIENT_REASON
]);
496 if (tb
[DEL_CLIENT_DEAUTH
])
497 deauth
= blobmsg_get_bool(tb
[DEL_CLIENT_DEAUTH
]);
499 sta
= ap_get_sta(hapd
, addr
);
502 hostapd_drv_sta_deauth(hapd
, addr
, reason
);
503 ap_sta_deauthenticate(hapd
, sta
, reason
);
505 hostapd_drv_sta_disassoc(hapd
, addr
, reason
);
506 ap_sta_disassociate(hapd
, sta
, reason
);
510 if (tb
[DEL_CLIENT_BAN_TIME
])
511 hostapd_bss_ban_client(hapd
, addr
, blobmsg_get_u32(tb
[DEL_CLIENT_BAN_TIME
]));
517 blobmsg_add_macaddr(struct blob_buf
*buf
, const char *name
, const u8
*addr
)
521 s
= blobmsg_alloc_string_buffer(buf
, name
, 20);
522 sprintf(s
, MACSTR
, MAC2STR(addr
));
523 blobmsg_add_string_buffer(buf
);
527 hostapd_bss_list_bans(struct ubus_context
*ctx
, struct ubus_object
*obj
,
528 struct ubus_request_data
*req
, const char *method
,
529 struct blob_attr
*msg
)
531 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
532 struct ubus_banned_client
*ban
;
535 blob_buf_init(&b
, 0);
536 c
= blobmsg_open_array(&b
, "clients");
537 avl_for_each_element(&hapd
->ubus
.banned
, ban
, avl
)
538 blobmsg_add_macaddr(&b
, NULL
, ban
->addr
);
539 blobmsg_close_array(&b
, c
);
540 ubus_send_reply(ctx
, req
, b
.head
);
547 hostapd_bss_wps_start(struct ubus_context
*ctx
, struct ubus_object
*obj
,
548 struct ubus_request_data
*req
, const char *method
,
549 struct blob_attr
*msg
)
552 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
554 rc
= hostapd_wps_button_pushed(hapd
, NULL
);
557 return UBUS_STATUS_NOT_SUPPORTED
;
563 static const char * pbc_status_enum_str(enum pbc_status status
)
566 case WPS_PBC_STATUS_DISABLE
:
568 case WPS_PBC_STATUS_ACTIVE
:
570 case WPS_PBC_STATUS_TIMEOUT
:
572 case WPS_PBC_STATUS_OVERLAP
:
580 hostapd_bss_wps_status(struct ubus_context
*ctx
, struct ubus_object
*obj
,
581 struct ubus_request_data
*req
, const char *method
,
582 struct blob_attr
*msg
)
585 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
587 blob_buf_init(&b
, 0);
589 blobmsg_add_string(&b
, "pbc_status", pbc_status_enum_str(hapd
->wps_stats
.pbc_status
));
590 blobmsg_add_string(&b
, "last_wps_result",
591 (hapd
->wps_stats
.status
== WPS_STATUS_SUCCESS
?
593 (hapd
->wps_stats
.status
== WPS_STATUS_FAILURE
?
594 "Failed" : "None")));
596 /* If status == Failure - Add possible Reasons */
597 if(hapd
->wps_stats
.status
== WPS_STATUS_FAILURE
&&
598 hapd
->wps_stats
.failure_reason
> 0)
599 blobmsg_add_string(&b
, "reason", wps_ei_str(hapd
->wps_stats
.failure_reason
));
601 if (hapd
->wps_stats
.status
)
602 blobmsg_printf(&b
, "peer_address", MACSTR
, MAC2STR(hapd
->wps_stats
.peer_addr
));
604 ubus_send_reply(ctx
, req
, b
.head
);
610 hostapd_bss_wps_cancel(struct ubus_context
*ctx
, struct ubus_object
*obj
,
611 struct ubus_request_data
*req
, const char *method
,
612 struct blob_attr
*msg
)
615 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
617 rc
= hostapd_wps_cancel(hapd
);
620 return UBUS_STATUS_NOT_SUPPORTED
;
624 #endif /* CONFIG_WPS */
627 hostapd_bss_update_beacon(struct ubus_context
*ctx
, struct ubus_object
*obj
,
628 struct ubus_request_data
*req
, const char *method
,
629 struct blob_attr
*msg
)
632 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
634 rc
= ieee802_11_set_beacon(hapd
);
637 return UBUS_STATUS_NOT_SUPPORTED
;
654 CSA_SEC_CHANNEL_OFFSET
,
663 static const struct blobmsg_policy csa_policy
[__CSA_MAX
] = {
664 [CSA_FREQ
] = { "freq", BLOBMSG_TYPE_INT32
},
665 [CSA_BCN_COUNT
] = { "bcn_count", BLOBMSG_TYPE_INT32
},
666 [CSA_CENTER_FREQ1
] = { "center_freq1", BLOBMSG_TYPE_INT32
},
667 [CSA_CENTER_FREQ2
] = { "center_freq2", BLOBMSG_TYPE_INT32
},
668 [CSA_BANDWIDTH
] = { "bandwidth", BLOBMSG_TYPE_INT32
},
669 [CSA_SEC_CHANNEL_OFFSET
] = { "sec_channel_offset", BLOBMSG_TYPE_INT32
},
670 [CSA_HT
] = { "ht", BLOBMSG_TYPE_BOOL
},
671 [CSA_VHT
] = { "vht", BLOBMSG_TYPE_BOOL
},
672 [CSA_HE
] = { "he", BLOBMSG_TYPE_BOOL
},
673 [CSA_BLOCK_TX
] = { "block_tx", BLOBMSG_TYPE_BOOL
},
674 [CSA_FORCE
] = { "force", BLOBMSG_TYPE_BOOL
},
678 static void switch_chan_fallback_cb(void *eloop_data
, void *user_ctx
)
680 struct hostapd_iface
*iface
= eloop_data
;
681 struct hostapd_freq_params
*freq_params
= user_ctx
;
683 hostapd_switch_channel_fallback(iface
, freq_params
);
688 hostapd_switch_chan(struct ubus_context
*ctx
, struct ubus_object
*obj
,
689 struct ubus_request_data
*req
, const char *method
,
690 struct blob_attr
*msg
)
692 struct blob_attr
*tb
[__CSA_MAX
];
693 struct hostapd_data
*hapd
= get_hapd_from_object(obj
);
694 struct hostapd_config
*iconf
= hapd
->iface
->conf
;
695 struct hostapd_freq_params
*freq_params
;
696 struct hostapd_hw_modes
*mode
= hapd
->iface
->current_mode
;
697 struct csa_settings css
= {
699 .ht_enabled
= iconf
->ieee80211n
,
700 .vht_enabled
= iconf
->ieee80211ac
,
701 .he_enabled
= iconf
->ieee80211ax
,
702 .sec_channel_offset
= iconf
->secondary_channel
,
705 u8 chwidth
= hostapd_get_oper_chwidth(iconf
);
706 u8 seg0
= 0, seg1
= 0;
707 int ret
= UBUS_STATUS_OK
;
710 blobmsg_parse(csa_policy
, __CSA_MAX
, tb
, blob_data(msg
), blob_len(msg
));
713 return UBUS_STATUS_INVALID_ARGUMENT
;
715 switch (iconf
->vht_oper_chwidth
) {
716 case CHANWIDTH_USE_HT
:
717 if (iconf
->secondary_channel
)
718 css
.freq_params
.bandwidth
= 40;
720 css
.freq_params
.bandwidth
= 20;
722 case CHANWIDTH_160MHZ
:
723 css
.freq_params
.bandwidth
= 160;
726 css
.freq_params
.bandwidth
= 80;
730 css
.freq_params
.freq
= blobmsg_get_u32(tb
[CSA_FREQ
]);
732 #define SET_CSA_SETTING(name, field, type) \
735 css.field = blobmsg_get_ ## type(tb[name]); \
738 SET_CSA_SETTING(CSA_BCN_COUNT
, cs_count
, u32
);
739 SET_CSA_SETTING(CSA_CENTER_FREQ1
, freq_params
.center_freq1
, u32
);
740 SET_CSA_SETTING(CSA_CENTER_FREQ2
, freq_params
.center_freq2
, u32
);
741 SET_CSA_SETTING(CSA_BANDWIDTH
, freq_params
.bandwidth
, u32
);
742 SET_CSA_SETTING(CSA_SEC_CHANNEL_OFFSET
, freq_params
.sec_channel_offset
, u32
);
743 SET_CSA_SETTING(CSA_HT
, freq_params
.ht_enabled
, bool);
744 SET_CSA_SETTING(CSA_VHT
, freq_params
.vht_enabled
, bool);
745 SET_CSA_SETTING(CSA_HE
, freq_params
.he_enabled
, bool);
746 SET_CSA_SETTING(CSA_BLOCK_TX
, block_tx
, bool);
748 css
.freq_params
.channel
= hostapd_hw_get_channel(hapd
, css
.freq_params
.freq
);
749 if (!css
.freq_params
.channel
)
750 return UBUS_STATUS_NOT_SUPPORTED
;
752 switch (css
.freq_params
.bandwidth
) {
754 chwidth
= CHANWIDTH_160MHZ
;
757 chwidth
= css
.freq_params
.center_freq2
? CHANWIDTH_80P80MHZ
: CHANWIDTH_80MHZ
;
760 chwidth
= CHANWIDTH_USE_HT
;
764 hostapd_set_freq_params(&css
.freq_params
, iconf
->hw_mode
,
765 css
.freq_params
.freq
,
766 css
.freq_params
.channel
, iconf
->enable_edmg
,
768 css
.freq_params
.ht_enabled
,
769 css
.freq_params
.vht_enabled
,
770 css
.freq_params
.he_enabled
,
771 css
.freq_params
.eht_enabled
,
772 css
.freq_params
.sec_channel_offset
,
775 mode
? &mode
->he_capab
[IEEE80211_MODE_AP
] :
777 mode
? &mode
->eht_capab
[IEEE80211_MODE_AP
] :
779 hostapd_get_punct_bitmap(hapd
));
781 for (i
= 0; i
< hapd
->iface
->num_bss
; i
++) {
782 struct hostapd_data
*bss
= hapd
->iface
->bss
[i
];
784 if (hostapd_switch_channel(bss
, &css
) != 0)
785 ret
= UBUS_STATUS_NOT_SUPPORTED
;
788 if (!ret
|| !tb
[CSA_FORCE
] || !blobmsg_get_bool(tb
[CSA_FORCE
]))
791 freq_params
= malloc(sizeof(*freq_params
));
792 memcpy(freq_params
, &css
.freq_params
, sizeof(*freq_params
));
793 eloop_register_timeout(0, 1, switch_chan_fallback_cb
,
794 hapd
->iface
, freq_params
);
797 #undef SET_CSA_SETTING
803 __VENDOR_ELEMENTS_MAX
806 static const struct blobmsg_policy ve_policy
[__VENDOR_ELEMENTS_MAX
] = {
807 /* vendor elements are provided as hex-string */
808 [VENDOR_ELEMENTS
] = { "vendor_elements", BLOBMSG_TYPE_STRING
},
812 hostapd_vendor_elements(struct ubus_context
*ctx
, struct ubus_object
*obj
,
813 struct ubus_request_data
*req
, const char *method
,
814 struct blob_attr
*msg
)
816 struct blob_attr
*tb
[__VENDOR_ELEMENTS_MAX
];
817 struct hostapd_data
*hapd
= get_hapd_from_object(obj
);
818 struct hostapd_bss_config
*bss
= hapd
->conf
;
819 struct wpabuf
*elems
;
823 blobmsg_parse(ve_policy
, __VENDOR_ELEMENTS_MAX
, tb
,
824 blob_data(msg
), blob_len(msg
));
826 if (!tb
[VENDOR_ELEMENTS
])
827 return UBUS_STATUS_INVALID_ARGUMENT
;
829 pos
= blobmsg_data(tb
[VENDOR_ELEMENTS
]);
830 len
= os_strlen(pos
);
832 return UBUS_STATUS_INVALID_ARGUMENT
;
836 wpabuf_free(bss
->vendor_elements
);
837 bss
->vendor_elements
= NULL
;
841 elems
= wpabuf_alloc(len
);
845 if (hexstr2bin(pos
, wpabuf_put(elems
, len
), len
)) {
847 return UBUS_STATUS_INVALID_ARGUMENT
;
850 wpabuf_free(bss
->vendor_elements
);
851 bss
->vendor_elements
= elems
;
853 /* update beacons if vendor elements were set successfully */
854 if (ieee802_11_update_beacons(hapd
->iface
) != 0)
855 return UBUS_STATUS_NOT_SUPPORTED
;
856 return UBUS_STATUS_OK
;
860 hostapd_rrm_print_nr(struct hostapd_neighbor_entry
*nr
)
866 blobmsg_printf(&b
, "", MACSTR
, MAC2STR(nr
->bssid
));
868 str
= blobmsg_alloc_string_buffer(&b
, "", nr
->ssid
.ssid_len
+ 1);
869 memcpy(str
, nr
->ssid
.ssid
, nr
->ssid
.ssid_len
);
870 str
[nr
->ssid
.ssid_len
] = 0;
871 blobmsg_add_string_buffer(&b
);
873 len
= wpabuf_len(nr
->nr
);
874 str
= blobmsg_alloc_string_buffer(&b
, "", 2 * len
+ 1);
875 wpa_snprintf_hex(str
, 2 * len
+ 1, wpabuf_head_u8(nr
->nr
), len
);
876 blobmsg_add_string_buffer(&b
);
880 BSS_MGMT_EN_NEIGHBOR
,
882 BSS_MGMT_EN_LINK_MEASUREMENT
,
884 BSS_MGMT_EN_BSS_TRANSITION
,
890 __hostapd_bss_mgmt_enable_f(struct hostapd_data
*hapd
, int flag
)
892 struct hostapd_bss_config
*bss
= hapd
->conf
;
896 case BSS_MGMT_EN_NEIGHBOR
:
897 if (bss
->radio_measurements
[0] &
898 WLAN_RRM_CAPS_NEIGHBOR_REPORT
)
901 bss
->radio_measurements
[0] |=
902 WLAN_RRM_CAPS_NEIGHBOR_REPORT
;
903 hostapd_neighbor_set_own_report(hapd
);
905 case BSS_MGMT_EN_BEACON
:
906 flags
= WLAN_RRM_CAPS_BEACON_REPORT_PASSIVE
|
907 WLAN_RRM_CAPS_BEACON_REPORT_ACTIVE
|
908 WLAN_RRM_CAPS_BEACON_REPORT_TABLE
;
910 if (bss
->radio_measurements
[0] & flags
== flags
)
913 bss
->radio_measurements
[0] |= (u8
) flags
;
915 case BSS_MGMT_EN_LINK_MEASUREMENT
:
916 flags
= WLAN_RRM_CAPS_LINK_MEASUREMENT
;
918 if (bss
->radio_measurements
[0] & flags
== flags
)
921 bss
->radio_measurements
[0] |= (u8
) flags
;
924 case BSS_MGMT_EN_BSS_TRANSITION
:
925 if (bss
->bss_transition
)
928 bss
->bss_transition
= 1;
935 __hostapd_bss_mgmt_enable(struct hostapd_data
*hapd
, uint32_t flags
)
940 for (i
= 0; i
< __BSS_MGMT_EN_MAX
; i
++) {
941 if (!(flags
& (1 << i
)))
944 update
|= __hostapd_bss_mgmt_enable_f(hapd
, i
);
948 ieee802_11_update_beacons(hapd
->iface
);
952 static const struct blobmsg_policy bss_mgmt_enable_policy
[__BSS_MGMT_EN_MAX
] = {
953 [BSS_MGMT_EN_NEIGHBOR
] = { "neighbor_report", BLOBMSG_TYPE_BOOL
},
954 [BSS_MGMT_EN_BEACON
] = { "beacon_report", BLOBMSG_TYPE_BOOL
},
955 [BSS_MGMT_EN_LINK_MEASUREMENT
] = { "link_measurement", BLOBMSG_TYPE_BOOL
},
957 [BSS_MGMT_EN_BSS_TRANSITION
] = { "bss_transition", BLOBMSG_TYPE_BOOL
},
962 hostapd_bss_mgmt_enable(struct ubus_context
*ctx
, struct ubus_object
*obj
,
963 struct ubus_request_data
*req
, const char *method
,
964 struct blob_attr
*msg
)
967 struct hostapd_data
*hapd
= get_hapd_from_object(obj
);
968 struct blob_attr
*tb
[__BSS_MGMT_EN_MAX
];
969 struct blob_attr
*cur
;
972 bool neigh
= false, beacon
= false;
974 blobmsg_parse(bss_mgmt_enable_policy
, __BSS_MGMT_EN_MAX
, tb
, blob_data(msg
), blob_len(msg
));
976 for (i
= 0; i
< ARRAY_SIZE(tb
); i
++) {
977 if (!tb
[i
] || !blobmsg_get_bool(tb
[i
]))
983 __hostapd_bss_mgmt_enable(hapd
, flags
);
990 hostapd_rrm_nr_enable(struct hostapd_data
*hapd
)
992 __hostapd_bss_mgmt_enable(hapd
, 1 << BSS_MGMT_EN_NEIGHBOR
);
996 hostapd_rrm_nr_get_own(struct ubus_context
*ctx
, struct ubus_object
*obj
,
997 struct ubus_request_data
*req
, const char *method
,
998 struct blob_attr
*msg
)
1000 struct hostapd_data
*hapd
= get_hapd_from_object(obj
);
1001 struct hostapd_neighbor_entry
*nr
;
1004 hostapd_rrm_nr_enable(hapd
);
1006 nr
= hostapd_neighbor_get(hapd
, hapd
->own_addr
, NULL
);
1008 return UBUS_STATUS_NOT_FOUND
;
1010 blob_buf_init(&b
, 0);
1012 c
= blobmsg_open_array(&b
, "value");
1013 hostapd_rrm_print_nr(nr
);
1014 blobmsg_close_array(&b
, c
);
1016 ubus_send_reply(ctx
, req
, b
.head
);
1022 hostapd_rrm_nr_list(struct ubus_context
*ctx
, struct ubus_object
*obj
,
1023 struct ubus_request_data
*req
, const char *method
,
1024 struct blob_attr
*msg
)
1026 struct hostapd_data
*hapd
= get_hapd_from_object(obj
);
1027 struct hostapd_neighbor_entry
*nr
;
1030 hostapd_rrm_nr_enable(hapd
);
1031 blob_buf_init(&b
, 0);
1033 c
= blobmsg_open_array(&b
, "list");
1034 dl_list_for_each(nr
, &hapd
->nr_db
, struct hostapd_neighbor_entry
, list
) {
1037 if (!memcmp(nr
->bssid
, hapd
->own_addr
, ETH_ALEN
))
1040 cur
= blobmsg_open_array(&b
, NULL
);
1041 hostapd_rrm_print_nr(nr
);
1042 blobmsg_close_array(&b
, cur
);
1044 blobmsg_close_array(&b
, c
);
1046 ubus_send_reply(ctx
, req
, b
.head
);
1056 static const struct blobmsg_policy nr_set_policy
[__NR_SET_LIST_MAX
] = {
1057 [NR_SET_LIST
] = { "list", BLOBMSG_TYPE_ARRAY
},
1062 hostapd_rrm_nr_clear(struct hostapd_data
*hapd
)
1064 struct hostapd_neighbor_entry
*nr
;
1067 dl_list_for_each(nr
, &hapd
->nr_db
, struct hostapd_neighbor_entry
, list
) {
1068 if (!memcmp(nr
->bssid
, hapd
->own_addr
, ETH_ALEN
))
1071 hostapd_neighbor_remove(hapd
, nr
->bssid
, &nr
->ssid
);
1077 hostapd_rrm_nr_set(struct ubus_context
*ctx
, struct ubus_object
*obj
,
1078 struct ubus_request_data
*req
, const char *method
,
1079 struct blob_attr
*msg
)
1081 static const struct blobmsg_policy nr_e_policy
[] = {
1082 { .type
= BLOBMSG_TYPE_STRING
},
1083 { .type
= BLOBMSG_TYPE_STRING
},
1084 { .type
= BLOBMSG_TYPE_STRING
},
1086 struct hostapd_data
*hapd
= get_hapd_from_object(obj
);
1087 struct blob_attr
*tb_l
[__NR_SET_LIST_MAX
];
1088 struct blob_attr
*tb
[ARRAY_SIZE(nr_e_policy
)];
1089 struct blob_attr
*cur
;
1092 hostapd_rrm_nr_enable(hapd
);
1094 blobmsg_parse(nr_set_policy
, __NR_SET_LIST_MAX
, tb_l
, blob_data(msg
), blob_len(msg
));
1095 if (!tb_l
[NR_SET_LIST
])
1096 return UBUS_STATUS_INVALID_ARGUMENT
;
1098 hostapd_rrm_nr_clear(hapd
);
1099 blobmsg_for_each_attr(cur
, tb_l
[NR_SET_LIST
], rem
) {
1100 struct wpa_ssid_value ssid
;
1101 struct wpabuf
*data
;
1105 blobmsg_parse_array(nr_e_policy
, ARRAY_SIZE(nr_e_policy
), tb
, blobmsg_data(cur
), blobmsg_data_len(cur
));
1106 if (!tb
[0] || !tb
[1] || !tb
[2])
1109 /* Neighbor Report binary */
1110 nr_s
= blobmsg_get_string(tb
[2]);
1111 data
= wpabuf_parse_bin(nr_s
);
1116 s
= blobmsg_get_string(tb
[0]);
1117 if (strlen(s
) == 0) {
1118 /* Copy BSSID from neighbor report */
1119 if (hwaddr_compact_aton(nr_s
, bssid
))
1121 } else if (hwaddr_aton(s
, bssid
)) {
1126 s
= blobmsg_get_string(tb
[1]);
1127 if (strlen(s
) == 0) {
1128 /* Copy SSID from hostapd BSS conf */
1129 memcpy(&ssid
, &hapd
->conf
->ssid
, sizeof(ssid
));
1131 ssid
.ssid_len
= strlen(s
);
1132 if (ssid
.ssid_len
> sizeof(ssid
.ssid
))
1135 memcpy(&ssid
, s
, ssid
.ssid_len
);
1138 hostapd_neighbor_set(hapd
, bssid
, &ssid
, data
, NULL
, NULL
, 0, 0);
1143 return UBUS_STATUS_INVALID_ARGUMENT
;
1152 BEACON_REQ_OP_CLASS
,
1154 BEACON_REQ_DURATION
,
1160 static const struct blobmsg_policy beacon_req_policy
[__BEACON_REQ_MAX
] = {
1161 [BEACON_REQ_ADDR
] = { "addr", BLOBMSG_TYPE_STRING
},
1162 [BEACON_REQ_OP_CLASS
] { "op_class", BLOBMSG_TYPE_INT32
},
1163 [BEACON_REQ_CHANNEL
] { "channel", BLOBMSG_TYPE_INT32
},
1164 [BEACON_REQ_DURATION
] { "duration", BLOBMSG_TYPE_INT32
},
1165 [BEACON_REQ_MODE
] { "mode", BLOBMSG_TYPE_INT32
},
1166 [BEACON_REQ_BSSID
] { "bssid", BLOBMSG_TYPE_STRING
},
1167 [BEACON_REQ_SSID
] { "ssid", BLOBMSG_TYPE_STRING
},
1171 hostapd_rrm_beacon_req(struct ubus_context
*ctx
, struct ubus_object
*obj
,
1172 struct ubus_request_data
*ureq
, const char *method
,
1173 struct blob_attr
*msg
)
1175 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
1176 struct blob_attr
*tb
[__BEACON_REQ_MAX
];
1177 struct blob_attr
*cur
;
1179 u8 bssid
[ETH_ALEN
] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
1184 blobmsg_parse(beacon_req_policy
, __BEACON_REQ_MAX
, tb
, blob_data(msg
), blob_len(msg
));
1186 if (!tb
[BEACON_REQ_ADDR
] || !tb
[BEACON_REQ_MODE
] || !tb
[BEACON_REQ_DURATION
] ||
1187 !tb
[BEACON_REQ_OP_CLASS
] || !tb
[BEACON_REQ_CHANNEL
])
1188 return UBUS_STATUS_INVALID_ARGUMENT
;
1190 if (tb
[BEACON_REQ_SSID
])
1191 buf_len
+= blobmsg_data_len(tb
[BEACON_REQ_SSID
]) + 2 - 1;
1193 mode
= blobmsg_get_u32(tb
[BEACON_REQ_MODE
]);
1194 if (hwaddr_aton(blobmsg_data(tb
[BEACON_REQ_ADDR
]), addr
))
1195 return UBUS_STATUS_INVALID_ARGUMENT
;
1197 if (tb
[BEACON_REQ_BSSID
] &&
1198 hwaddr_aton(blobmsg_data(tb
[BEACON_REQ_BSSID
]), bssid
))
1199 return UBUS_STATUS_INVALID_ARGUMENT
;
1201 req
= wpabuf_alloc(buf_len
);
1203 return UBUS_STATUS_UNKNOWN_ERROR
;
1205 /* 1: regulatory class */
1206 wpabuf_put_u8(req
, blobmsg_get_u32(tb
[BEACON_REQ_OP_CLASS
]));
1208 /* 2: channel number */
1209 wpabuf_put_u8(req
, blobmsg_get_u32(tb
[BEACON_REQ_CHANNEL
]));
1211 /* 3-4: randomization interval */
1212 wpabuf_put_le16(req
, 0);
1215 wpabuf_put_le16(req
, blobmsg_get_u32(tb
[BEACON_REQ_DURATION
]));
1218 wpabuf_put_u8(req
, blobmsg_get_u32(tb
[BEACON_REQ_MODE
]));
1221 wpabuf_put_data(req
, bssid
, ETH_ALEN
);
1223 if ((cur
= tb
[BEACON_REQ_SSID
]) != NULL
) {
1224 wpabuf_put_u8(req
, WLAN_EID_SSID
);
1225 wpabuf_put_u8(req
, blobmsg_data_len(cur
) - 1);
1226 wpabuf_put_data(req
, blobmsg_data(cur
), blobmsg_data_len(cur
) - 1);
1229 ret
= hostapd_send_beacon_req(hapd
, addr
, 0, req
);
1238 LM_REQ_TX_POWER_USED
,
1239 LM_REQ_TX_POWER_MAX
,
1243 static const struct blobmsg_policy lm_req_policy
[__LM_REQ_MAX
] = {
1244 [LM_REQ_ADDR
] = { "addr", BLOBMSG_TYPE_STRING
},
1245 [LM_REQ_TX_POWER_USED
] = { "tx-power-used", BLOBMSG_TYPE_INT32
},
1246 [LM_REQ_TX_POWER_MAX
] = { "tx-power-max", BLOBMSG_TYPE_INT32
},
1250 hostapd_rrm_lm_req(struct ubus_context
*ctx
, struct ubus_object
*obj
,
1251 struct ubus_request_data
*ureq
, const char *method
,
1252 struct blob_attr
*msg
)
1254 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
1255 struct blob_attr
*tb
[__LM_REQ_MAX
];
1259 int8_t txp_used
, txp_max
;
1264 blobmsg_parse(lm_req_policy
, __LM_REQ_MAX
, tb
, blob_data(msg
), blob_len(msg
));
1266 if (!tb
[LM_REQ_ADDR
])
1267 return UBUS_STATUS_INVALID_ARGUMENT
;
1269 if (tb
[LM_REQ_TX_POWER_USED
])
1270 txp_used
= (int8_t) blobmsg_get_u32(tb
[LM_REQ_TX_POWER_USED
]);
1272 if (tb
[LM_REQ_TX_POWER_MAX
])
1273 txp_max
= (int8_t) blobmsg_get_u32(tb
[LM_REQ_TX_POWER_MAX
]);
1275 if (hwaddr_aton(blobmsg_data(tb
[LM_REQ_ADDR
]), addr
))
1276 return UBUS_STATUS_INVALID_ARGUMENT
;
1278 buf
= wpabuf_alloc(5);
1280 return UBUS_STATUS_UNKNOWN_ERROR
;
1282 wpabuf_put_u8(buf
, WLAN_ACTION_RADIO_MEASUREMENT
);
1283 wpabuf_put_u8(buf
, WLAN_RRM_LINK_MEASUREMENT_REQUEST
);
1284 wpabuf_put_u8(buf
, 1);
1286 wpabuf_put_u8(buf
, txp_used
);
1288 wpabuf_put_u8(buf
, txp_max
);
1290 ret
= hostapd_drv_send_action(hapd
, hapd
->iface
->freq
, 0, addr
,
1291 wpabuf_head(buf
), wpabuf_len(buf
));
1301 void hostapd_ubus_handle_link_measurement(struct hostapd_data
*hapd
, const u8
*data
, size_t len
)
1303 const struct ieee80211_mgmt
*mgmt
= (const struct ieee80211_mgmt
*) data
;
1304 const u8
*pos
, *end
;
1308 token
= mgmt
->u
.action
.u
.rrm
.dialog_token
;
1309 pos
= mgmt
->u
.action
.u
.rrm
.variable
;
1314 if (!hapd
->ubus
.obj
.has_subscribers
)
1317 blob_buf_init(&b
, 0);
1318 blobmsg_add_macaddr(&b
, "address", mgmt
->sa
);
1319 blobmsg_add_u16(&b
, "dialog-token", token
);
1320 blobmsg_add_u16(&b
, "rx-antenna-id", pos
[4]);
1321 blobmsg_add_u16(&b
, "tx-antenna-id", pos
[5]);
1322 blobmsg_add_u16(&b
, "rcpi", pos
[6]);
1323 blobmsg_add_u16(&b
, "rsni", pos
[7]);
1325 ubus_notify(ctx
, &hapd
->ubus
.obj
, "link-measurement-report", b
.head
, -1);
1329 #ifdef CONFIG_WNM_AP
1332 hostapd_bss_tr_send(struct hostapd_data
*hapd
, u8
*addr
, bool disassoc_imminent
, bool abridged
,
1333 u16 disassoc_timer
, u8 validity_period
, u8 dialog_token
,
1334 struct blob_attr
*neighbors
, u8 mbo_reason
, u8 cell_pref
, u8 reassoc_delay
)
1336 struct blob_attr
*cur
;
1337 struct sta_info
*sta
;
1345 sta
= ap_get_sta(hapd
, addr
);
1347 return UBUS_STATUS_NOT_FOUND
;
1352 if (blobmsg_check_array(neighbors
,
1353 BLOBMSG_TYPE_STRING
) < 0)
1354 return UBUS_STATUS_INVALID_ARGUMENT
;
1356 blobmsg_for_each_attr(cur
, neighbors
, rem
) {
1357 int len
= strlen(blobmsg_get_string(cur
));
1360 return UBUS_STATUS_INVALID_ARGUMENT
;
1362 nr_len
+= (len
/ 2) + 2;
1366 nr
= os_zalloc(nr_len
);
1368 return UBUS_STATUS_UNKNOWN_ERROR
;
1372 blobmsg_for_each_attr(cur
, neighbors
, rem
) {
1373 int len
= strlen(blobmsg_get_string(cur
)) / 2;
1375 *nr_cur
++ = WLAN_EID_NEIGHBOR_REPORT
;
1376 *nr_cur
++ = (u8
) len
;
1377 if (hexstr2bin(blobmsg_data(cur
), nr_cur
, len
)) {
1379 return UBUS_STATUS_INVALID_ARGUMENT
;
1387 req_mode
|= WNM_BSS_TM_REQ_PREF_CAND_LIST_INCLUDED
;
1390 req_mode
|= WNM_BSS_TM_REQ_ABRIDGED
;
1392 if (disassoc_imminent
)
1393 req_mode
|= WNM_BSS_TM_REQ_DISASSOC_IMMINENT
;
1398 if (mbo_reason
> MBO_TRANSITION_REASON_PREMIUM_AP
)
1399 return UBUS_STATUS_INVALID_ARGUMENT
;
1401 if (cell_pref
!= 0 && cell_pref
!= 1 && cell_pref
!= 255)
1402 return UBUS_STATUS_INVALID_ARGUMENT
;
1404 if (reassoc_delay
> 65535 || (reassoc_delay
&& !disassoc_imminent
))
1405 return UBUS_STATUS_INVALID_ARGUMENT
;
1407 *mbo_pos
++ = MBO_ATTR_ID_TRANSITION_REASON
;
1409 *mbo_pos
++ = mbo_reason
;
1410 *mbo_pos
++ = MBO_ATTR_ID_CELL_DATA_PREF
;
1412 *mbo_pos
++ = cell_pref
;
1414 if (reassoc_delay
) {
1415 *mbo_pos
++ = MBO_ATTR_ID_ASSOC_RETRY_DELAY
;
1417 WPA_PUT_LE16(mbo_pos
, reassoc_delay
);
1421 mbo_len
= mbo_pos
- mbo
;
1424 if (wnm_send_bss_tm_req(hapd
, sta
, req_mode
, disassoc_timer
, validity_period
, NULL
,
1425 dialog_token
, NULL
, nr
, nr_len
, mbo_len
? mbo
: NULL
, mbo_len
))
1426 return UBUS_STATUS_UNKNOWN_ERROR
;
1435 BSS_TR_VALID_PERIOD
,
1438 BSS_TR_DIALOG_TOKEN
,
1442 BSS_TR_REASSOC_DELAY
,
1444 __BSS_TR_DISASSOC_MAX
1447 static const struct blobmsg_policy bss_tr_policy
[__BSS_TR_DISASSOC_MAX
] = {
1448 [BSS_TR_ADDR
] = { "addr", BLOBMSG_TYPE_STRING
},
1449 [BSS_TR_DA_IMMINENT
] = { "disassociation_imminent", BLOBMSG_TYPE_BOOL
},
1450 [BSS_TR_DA_TIMER
] = { "disassociation_timer", BLOBMSG_TYPE_INT32
},
1451 [BSS_TR_VALID_PERIOD
] = { "validity_period", BLOBMSG_TYPE_INT32
},
1452 [BSS_TR_NEIGHBORS
] = { "neighbors", BLOBMSG_TYPE_ARRAY
},
1453 [BSS_TR_ABRIDGED
] = { "abridged", BLOBMSG_TYPE_BOOL
},
1454 [BSS_TR_DIALOG_TOKEN
] = { "dialog_token", BLOBMSG_TYPE_INT32
},
1456 [BSS_TR_MBO_REASON
] = { "mbo_reason", BLOBMSG_TYPE_INT32
},
1457 [BSS_TR_CELL_PREF
] = { "cell_pref", BLOBMSG_TYPE_INT32
},
1458 [BSS_TR_REASSOC_DELAY
] = { "reassoc_delay", BLOBMSG_TYPE_INT32
},
1463 hostapd_bss_transition_request(struct ubus_context
*ctx
, struct ubus_object
*obj
,
1464 struct ubus_request_data
*ureq
, const char *method
,
1465 struct blob_attr
*msg
)
1467 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
1468 struct blob_attr
*tb
[__BSS_TR_DISASSOC_MAX
];
1469 struct sta_info
*sta
;
1471 u32 valid_period
= 0;
1473 u32 dialog_token
= 1;
1480 blobmsg_parse(bss_tr_policy
, __BSS_TR_DISASSOC_MAX
, tb
, blob_data(msg
), blob_len(msg
));
1482 if (!tb
[BSS_TR_ADDR
])
1483 return UBUS_STATUS_INVALID_ARGUMENT
;
1485 if (hwaddr_aton(blobmsg_data(tb
[BSS_TR_ADDR
]), addr
))
1486 return UBUS_STATUS_INVALID_ARGUMENT
;
1488 if (tb
[BSS_TR_DA_TIMER
])
1489 da_timer
= blobmsg_get_u32(tb
[BSS_TR_DA_TIMER
]);
1491 if (tb
[BSS_TR_VALID_PERIOD
])
1492 valid_period
= blobmsg_get_u32(tb
[BSS_TR_VALID_PERIOD
]);
1494 if (tb
[BSS_TR_DIALOG_TOKEN
])
1495 dialog_token
= blobmsg_get_u32(tb
[BSS_TR_DIALOG_TOKEN
]);
1497 da_imminent
= !!(tb
[BSS_TR_DA_IMMINENT
] && blobmsg_get_bool(tb
[BSS_TR_DA_IMMINENT
]));
1498 abridged
= !!(tb
[BSS_TR_ABRIDGED
] && blobmsg_get_bool(tb
[BSS_TR_ABRIDGED
]));
1501 if (tb
[BSS_TR_MBO_REASON
])
1502 mbo_reason
= blobmsg_get_u32(tb
[BSS_TR_MBO_REASON
]);
1504 if (tb
[BSS_TR_CELL_PREF
])
1505 cell_pref
= blobmsg_get_u32(tb
[BSS_TR_CELL_PREF
]);
1507 if (tb
[BSS_TR_REASSOC_DELAY
])
1508 reassoc_delay
= blobmsg_get_u32(tb
[BSS_TR_REASSOC_DELAY
]);
1511 return hostapd_bss_tr_send(hapd
, addr
, da_imminent
, abridged
, da_timer
, valid_period
,
1512 dialog_token
, tb
[BSS_TR_NEIGHBORS
], mbo_reason
, cell_pref
, reassoc_delay
);
1516 #ifdef CONFIG_AIRTIME_POLICY
1519 UPDATE_AIRTIME_WEIGHT
,
1520 __UPDATE_AIRTIME_MAX
,
1524 static const struct blobmsg_policy airtime_policy
[__UPDATE_AIRTIME_MAX
] = {
1525 [UPDATE_AIRTIME_STA
] = { "sta", BLOBMSG_TYPE_STRING
},
1526 [UPDATE_AIRTIME_WEIGHT
] = { "weight", BLOBMSG_TYPE_INT32
},
1530 hostapd_bss_update_airtime(struct ubus_context
*ctx
, struct ubus_object
*obj
,
1531 struct ubus_request_data
*ureq
, const char *method
,
1532 struct blob_attr
*msg
)
1534 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
1535 struct blob_attr
*tb
[__UPDATE_AIRTIME_MAX
];
1536 struct sta_info
*sta
= NULL
;
1540 blobmsg_parse(airtime_policy
, __UPDATE_AIRTIME_MAX
, tb
, blob_data(msg
), blob_len(msg
));
1542 if (!tb
[UPDATE_AIRTIME_WEIGHT
])
1543 return UBUS_STATUS_INVALID_ARGUMENT
;
1545 weight
= blobmsg_get_u32(tb
[UPDATE_AIRTIME_WEIGHT
]);
1547 if (!tb
[UPDATE_AIRTIME_STA
]) {
1549 return UBUS_STATUS_INVALID_ARGUMENT
;
1551 hapd
->conf
->airtime_weight
= weight
;
1555 if (hwaddr_aton(blobmsg_data(tb
[UPDATE_AIRTIME_STA
]), addr
))
1556 return UBUS_STATUS_INVALID_ARGUMENT
;
1558 sta
= ap_get_sta(hapd
, addr
);
1560 return UBUS_STATUS_NOT_FOUND
;
1562 sta
->dyn_airtime_weight
= weight
;
1563 airtime_policy_new_sta(hapd
, sta
);
1569 #ifdef CONFIG_TAXONOMY
1570 static const struct blobmsg_policy addr_policy
[] = {
1571 { "address", BLOBMSG_TYPE_STRING
}
1575 hostapd_add_b64_data(const char *name
, const struct wpabuf
*buf
)
1582 str
= blobmsg_alloc_string_buffer(&b
, name
, B64_ENCODE_LEN(wpabuf_len(buf
)));
1583 b64_encode(wpabuf_head(buf
), wpabuf_len(buf
), str
, B64_ENCODE_LEN(wpabuf_len(buf
)));
1584 blobmsg_add_string_buffer(&b
);
1590 hostapd_bss_get_sta_ies(struct ubus_context
*ctx
, struct ubus_object
*obj
,
1591 struct ubus_request_data
*req
, const char *method
,
1592 struct blob_attr
*msg
)
1594 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
1595 struct blob_attr
*tb
;
1596 struct sta_info
*sta
;
1599 blobmsg_parse(addr_policy
, 1, &tb
, blobmsg_data(msg
), blobmsg_len(msg
));
1601 if (!tb
|| hwaddr_aton(blobmsg_data(tb
), addr
))
1602 return UBUS_STATUS_INVALID_ARGUMENT
;
1604 sta
= ap_get_sta(hapd
, addr
);
1605 if (!sta
|| (!sta
->probe_ie_taxonomy
&& !sta
->assoc_ie_taxonomy
))
1606 return UBUS_STATUS_NOT_FOUND
;
1608 blob_buf_init(&b
, 0);
1609 hostapd_add_b64_data("probe_ie", sta
->probe_ie_taxonomy
);
1610 hostapd_add_b64_data("assoc_ie", sta
->assoc_ie_taxonomy
);
1611 ubus_send_reply(ctx
, req
, b
.head
);
1618 static const struct ubus_method bss_methods
[] = {
1619 UBUS_METHOD_NOARG("reload", hostapd_bss_reload
),
1620 UBUS_METHOD_NOARG("get_clients", hostapd_bss_get_clients
),
1621 #ifdef CONFIG_TAXONOMY
1622 UBUS_METHOD("get_sta_ies", hostapd_bss_get_sta_ies
, addr_policy
),
1624 UBUS_METHOD_NOARG("get_status", hostapd_bss_get_status
),
1625 UBUS_METHOD("del_client", hostapd_bss_del_client
, del_policy
),
1626 #ifdef CONFIG_AIRTIME_POLICY
1627 UBUS_METHOD("update_airtime", hostapd_bss_update_airtime
, airtime_policy
),
1629 UBUS_METHOD_NOARG("list_bans", hostapd_bss_list_bans
),
1631 UBUS_METHOD_NOARG("wps_start", hostapd_bss_wps_start
),
1632 UBUS_METHOD_NOARG("wps_status", hostapd_bss_wps_status
),
1633 UBUS_METHOD_NOARG("wps_cancel", hostapd_bss_wps_cancel
),
1635 UBUS_METHOD_NOARG("update_beacon", hostapd_bss_update_beacon
),
1636 UBUS_METHOD_NOARG("get_features", hostapd_bss_get_features
),
1638 UBUS_METHOD("switch_chan", hostapd_switch_chan
, csa_policy
),
1640 UBUS_METHOD("set_vendor_elements", hostapd_vendor_elements
, ve_policy
),
1641 UBUS_METHOD("notify_response", hostapd_notify_response
, notify_policy
),
1642 UBUS_METHOD("bss_mgmt_enable", hostapd_bss_mgmt_enable
, bss_mgmt_enable_policy
),
1643 UBUS_METHOD_NOARG("rrm_nr_get_own", hostapd_rrm_nr_get_own
),
1644 UBUS_METHOD_NOARG("rrm_nr_list", hostapd_rrm_nr_list
),
1645 UBUS_METHOD("rrm_nr_set", hostapd_rrm_nr_set
, nr_set_policy
),
1646 UBUS_METHOD("rrm_beacon_req", hostapd_rrm_beacon_req
, beacon_req_policy
),
1647 UBUS_METHOD("link_measurement_req", hostapd_rrm_lm_req
, lm_req_policy
),
1648 #ifdef CONFIG_WNM_AP
1649 UBUS_METHOD("bss_transition_request", hostapd_bss_transition_request
, bss_tr_policy
),
1653 static struct ubus_object_type bss_object_type
=
1654 UBUS_OBJECT_TYPE("hostapd_bss", bss_methods
);
1656 static int avl_compare_macaddr(const void *k1
, const void *k2
, void *ptr
)
1658 return memcmp(k1
, k2
, ETH_ALEN
);
1662 hostapd_wired_get_clients(struct ubus_context
*ctx
, struct ubus_object
*obj
,
1663 struct ubus_request_data
*req
, const char *method
,
1664 struct blob_attr
*msg
)
1666 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
1667 struct hostap_sta_driver_data sta_driver_data
;
1668 struct sta_info
*sta
;
1671 static const struct {
1675 { "authorized", WLAN_STA_AUTHORIZED
},
1678 blob_buf_init(&b
, 0);
1679 list
= blobmsg_open_table(&b
, "clients");
1680 for (sta
= hapd
->sta_list
; sta
; sta
= sta
->next
) {
1684 sprintf(mac_buf
, MACSTR
, MAC2STR(sta
->addr
));
1685 c
= blobmsg_open_table(&b
, mac_buf
);
1686 for (i
= 0; i
< ARRAY_SIZE(sta_flags
); i
++)
1687 blobmsg_add_u8(&b
, sta_flags
[i
].name
,
1688 !!(sta
->flags
& sta_flags
[i
].flag
));
1690 blobmsg_close_table(&b
, c
);
1692 blobmsg_close_array(&b
, list
);
1693 ubus_send_reply(ctx
, req
, b
.head
);
1699 hostapd_wired_get_status(struct ubus_context
*ctx
, struct ubus_object
*obj
,
1700 struct ubus_request_data
*req
, const char *method
,
1701 struct blob_attr
*msg
)
1703 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
1704 char iface_name
[17];
1706 blob_buf_init(&b
, 0);
1707 blobmsg_add_string(&b
, "driver", hapd
->driver
->name
);
1708 blobmsg_add_string(&b
, "status", hostapd_state_text(hapd
->iface
->state
));
1710 snprintf(iface_name
, 17, "%s", hapd
->iface
->phy
);
1711 blobmsg_add_string(&b
, "iface", iface_name
);
1713 ubus_send_reply(ctx
, req
, b
.head
);
1719 hostapd_wired_del_clients(struct ubus_context
*ctx
, struct ubus_object
*obj
,
1720 struct ubus_request_data
*req
, const char *method
,
1721 struct blob_attr
*msg
)
1723 struct hostapd_data
*hapd
= container_of(obj
, struct hostapd_data
, ubus
.obj
);
1725 hostapd_free_stas(hapd
);
1730 static const struct ubus_method wired_methods
[] = {
1731 UBUS_METHOD_NOARG("reload", hostapd_bss_reload
),
1732 UBUS_METHOD_NOARG("get_clients", hostapd_wired_get_clients
),
1733 UBUS_METHOD_NOARG("del_clients", hostapd_wired_del_clients
),
1734 UBUS_METHOD_NOARG("get_status", hostapd_wired_get_status
),
1737 static struct ubus_object_type wired_object_type
=
1738 UBUS_OBJECT_TYPE("hostapd_wired", wired_methods
);
1740 void hostapd_ubus_add_bss(struct hostapd_data
*hapd
)
1742 struct ubus_object
*obj
= &hapd
->ubus
.obj
;
1747 if (hapd
->conf
->mesh
& MESH_ENABLED
)
1751 if (!hostapd_ubus_init())
1754 if (asprintf(&name
, "hostapd.%s", hapd
->conf
->iface
) < 0)
1757 avl_init(&hapd
->ubus
.banned
, avl_compare_macaddr
, false, NULL
);
1759 if (!strcmp(hapd
->driver
->name
, "wired")) {
1760 obj
->type
= &wired_object_type
;
1761 obj
->methods
= wired_object_type
.methods
;
1762 obj
->n_methods
= wired_object_type
.n_methods
;
1764 obj
->type
= &bss_object_type
;
1765 obj
->methods
= bss_object_type
.methods
;
1766 obj
->n_methods
= bss_object_type
.n_methods
;
1768 ret
= ubus_add_object(ctx
, obj
);
1769 hostapd_ubus_ref_inc();
1772 void hostapd_ubus_free_bss(struct hostapd_data
*hapd
)
1774 struct ubus_object
*obj
= &hapd
->ubus
.obj
;
1775 char *name
= (char *) obj
->name
;
1778 if (hapd
->conf
->mesh
& MESH_ENABLED
)
1786 ubus_remove_object(ctx
, obj
);
1787 hostapd_ubus_ref_dec();
1794 hostapd_ubus_vlan_action(struct hostapd_data
*hapd
, struct hostapd_vlan
*vlan
,
1797 struct vlan_description
*desc
= &vlan
->vlan_desc
;
1801 if (!hapd
->ubus
.obj
.has_subscribers
)
1804 blob_buf_init(&b
, 0);
1805 blobmsg_add_string(&b
, "ifname", vlan
->ifname
);
1806 blobmsg_add_string(&b
, "bridge", vlan
->bridge
);
1807 blobmsg_add_u32(&b
, "vlan_id", vlan
->vlan_id
);
1809 if (desc
->notempty
) {
1810 blobmsg_add_u32(&b
, "untagged", desc
->untagged
);
1811 c
= blobmsg_open_array(&b
, "tagged");
1812 for (i
= 0; i
< ARRAY_SIZE(desc
->tagged
) && desc
->tagged
[i
]; i
++)
1813 blobmsg_add_u32(&b
, "", desc
->tagged
[i
]);
1814 blobmsg_close_array(&b
, c
);
1817 ubus_notify(ctx
, &hapd
->ubus
.obj
, action
, b
.head
, -1);
1820 void hostapd_ubus_add_vlan(struct hostapd_data
*hapd
, struct hostapd_vlan
*vlan
)
1822 hostapd_ubus_vlan_action(hapd
, vlan
, "vlan_add");
1825 void hostapd_ubus_remove_vlan(struct hostapd_data
*hapd
, struct hostapd_vlan
*vlan
)
1827 hostapd_ubus_vlan_action(hapd
, vlan
, "vlan_remove");
1830 struct ubus_event_req
{
1831 struct ubus_notify_request nreq
;
1836 ubus_event_cb(struct ubus_notify_request
*req
, int idx
, int ret
)
1838 struct ubus_event_req
*ureq
= container_of(req
, struct ubus_event_req
, nreq
);
1843 int hostapd_ubus_handle_event(struct hostapd_data
*hapd
, struct hostapd_ubus_request
*req
)
1845 struct ubus_banned_client
*ban
;
1846 const char *types
[HOSTAPD_UBUS_TYPE_MAX
] = {
1847 [HOSTAPD_UBUS_PROBE_REQ
] = "probe",
1848 [HOSTAPD_UBUS_AUTH_REQ
] = "auth",
1849 [HOSTAPD_UBUS_ASSOC_REQ
] = "assoc",
1851 const char *type
= "mgmt";
1852 struct ubus_event_req ureq
= {};
1855 if (req
->mgmt_frame
)
1856 addr
= req
->mgmt_frame
->sa
;
1860 ban
= avl_find_element(&hapd
->ubus
.banned
, addr
, ban
, avl
);
1862 return WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA
;
1864 if (!hapd
->ubus
.obj
.has_subscribers
)
1865 return WLAN_STATUS_SUCCESS
;
1867 if (req
->type
< ARRAY_SIZE(types
))
1868 type
= types
[req
->type
];
1870 blob_buf_init(&b
, 0);
1871 blobmsg_add_macaddr(&b
, "address", addr
);
1872 blobmsg_add_string(&b
, "ifname", hapd
->conf
->iface
);
1873 if (req
->mgmt_frame
)
1874 blobmsg_add_macaddr(&b
, "target", req
->mgmt_frame
->da
);
1875 if (req
->ssi_signal
)
1876 blobmsg_add_u32(&b
, "signal", req
->ssi_signal
);
1877 blobmsg_add_u32(&b
, "freq", hapd
->iface
->freq
);
1880 if(req
->elems
->ht_capabilities
)
1882 struct ieee80211_ht_capabilities
*ht_capabilities
;
1883 void *ht_cap
, *ht_cap_mcs_set
, *mcs_set
;
1886 ht_capabilities
= (struct ieee80211_ht_capabilities
*) req
->elems
->ht_capabilities
;
1887 ht_cap
= blobmsg_open_table(&b
, "ht_capabilities");
1888 blobmsg_add_u16(&b
, "ht_capabilities_info", ht_capabilities
->ht_capabilities_info
);
1889 ht_cap_mcs_set
= blobmsg_open_table(&b
, "supported_mcs_set");
1890 blobmsg_add_u16(&b
, "a_mpdu_params", ht_capabilities
->a_mpdu_params
);
1891 blobmsg_add_u16(&b
, "ht_extended_capabilities", ht_capabilities
->ht_extended_capabilities
);
1892 blobmsg_add_u32(&b
, "tx_bf_capability_info", ht_capabilities
->tx_bf_capability_info
);
1893 blobmsg_add_u16(&b
, "asel_capabilities", ht_capabilities
->asel_capabilities
);
1894 mcs_set
= blobmsg_open_array(&b
, "supported_mcs_set");
1895 for (int i
= 0; i
< 16; i
++) {
1896 blobmsg_add_u16(&b
, NULL
, (u16
) ht_capabilities
->supported_mcs_set
[i
]);
1898 blobmsg_close_array(&b
, mcs_set
);
1899 blobmsg_close_table(&b
, ht_cap_mcs_set
);
1900 blobmsg_close_table(&b
, ht_cap
);
1902 if(req
->elems
->vht_capabilities
)
1904 struct ieee80211_vht_capabilities
*vht_capabilities
;
1905 void *vht_cap
, *vht_cap_mcs_set
;
1907 vht_capabilities
= (struct ieee80211_vht_capabilities
*) req
->elems
->vht_capabilities
;
1908 vht_cap
= blobmsg_open_table(&b
, "vht_capabilities");
1909 blobmsg_add_u32(&b
, "vht_capabilities_info", vht_capabilities
->vht_capabilities_info
);
1910 vht_cap_mcs_set
= blobmsg_open_table(&b
, "vht_supported_mcs_set");
1911 blobmsg_add_u16(&b
, "rx_map", vht_capabilities
->vht_supported_mcs_set
.rx_map
);
1912 blobmsg_add_u16(&b
, "rx_highest", vht_capabilities
->vht_supported_mcs_set
.rx_highest
);
1913 blobmsg_add_u16(&b
, "tx_map", vht_capabilities
->vht_supported_mcs_set
.tx_map
);
1914 blobmsg_add_u16(&b
, "tx_highest", vht_capabilities
->vht_supported_mcs_set
.tx_highest
);
1915 blobmsg_close_table(&b
, vht_cap_mcs_set
);
1916 blobmsg_close_table(&b
, vht_cap
);
1920 if (!hapd
->ubus
.notify_response
) {
1921 ubus_notify(ctx
, &hapd
->ubus
.obj
, type
, b
.head
, -1);
1922 return WLAN_STATUS_SUCCESS
;
1925 if (ubus_notify_async(ctx
, &hapd
->ubus
.obj
, type
, b
.head
, &ureq
.nreq
))
1926 return WLAN_STATUS_SUCCESS
;
1928 ureq
.nreq
.status_cb
= ubus_event_cb
;
1929 ubus_complete_request(ctx
, &ureq
.nreq
.req
, 100);
1934 return WLAN_STATUS_SUCCESS
;
1937 void hostapd_ubus_notify(struct hostapd_data
*hapd
, const char *type
, const u8
*addr
)
1939 if (!hapd
->ubus
.obj
.has_subscribers
)
1945 blob_buf_init(&b
, 0);
1946 blobmsg_add_macaddr(&b
, "address", addr
);
1947 blobmsg_add_string(&b
, "ifname", hapd
->conf
->iface
);
1949 ubus_notify(ctx
, &hapd
->ubus
.obj
, type
, b
.head
, -1);
1952 void hostapd_ubus_notify_authorized(struct hostapd_data
*hapd
, struct sta_info
*sta
,
1953 const char *auth_alg
)
1955 if (!hapd
->ubus
.obj
.has_subscribers
)
1958 blob_buf_init(&b
, 0);
1959 blobmsg_add_macaddr(&b
, "address", sta
->addr
);
1961 blobmsg_add_u32(&b
, "vlan", sta
->vlan_id
);
1962 blobmsg_add_string(&b
, "ifname", hapd
->conf
->iface
);
1964 blobmsg_add_string(&b
, "auth-alg", auth_alg
);
1965 if (sta
->bandwidth
[0] || sta
->bandwidth
[1]) {
1966 void *r
= blobmsg_open_array(&b
, "rate-limit");
1968 blobmsg_add_u32(&b
, "", sta
->bandwidth
[0]);
1969 blobmsg_add_u32(&b
, "", sta
->bandwidth
[1]);
1970 blobmsg_close_array(&b
, r
);
1973 ubus_notify(ctx
, &hapd
->ubus
.obj
, "sta-authorized", b
.head
, -1);
1976 void hostapd_ubus_notify_beacon_report(
1977 struct hostapd_data
*hapd
, const u8
*addr
, u8 token
, u8 rep_mode
,
1978 struct rrm_measurement_beacon_report
*rep
, size_t len
)
1980 if (!hapd
->ubus
.obj
.has_subscribers
)
1986 blob_buf_init(&b
, 0);
1987 blobmsg_add_macaddr(&b
, "address", addr
);
1988 blobmsg_add_u16(&b
, "op-class", rep
->op_class
);
1989 blobmsg_add_u16(&b
, "channel", rep
->channel
);
1990 blobmsg_add_u64(&b
, "start-time", rep
->start_time
);
1991 blobmsg_add_u16(&b
, "duration", rep
->duration
);
1992 blobmsg_add_u16(&b
, "report-info", rep
->report_info
);
1993 blobmsg_add_u16(&b
, "rcpi", rep
->rcpi
);
1994 blobmsg_add_u16(&b
, "rsni", rep
->rsni
);
1995 blobmsg_add_macaddr(&b
, "bssid", rep
->bssid
);
1996 blobmsg_add_u16(&b
, "antenna-id", rep
->antenna_id
);
1997 blobmsg_add_u16(&b
, "parent-tsf", rep
->parent_tsf
);
1998 blobmsg_add_u16(&b
, "rep-mode", rep_mode
);
2000 ubus_notify(ctx
, &hapd
->ubus
.obj
, "beacon-report", b
.head
, -1);
2003 void hostapd_ubus_notify_radar_detected(struct hostapd_iface
*iface
, int frequency
,
2004 int chan_width
, int cf1
, int cf2
)
2006 struct hostapd_data
*hapd
;
2012 blob_buf_init(&b
, 0);
2013 blobmsg_add_u16(&b
, "frequency", frequency
);
2014 blobmsg_add_u16(&b
, "width", chan_width
);
2015 blobmsg_add_u16(&b
, "center1", cf1
);
2016 blobmsg_add_u16(&b
, "center2", cf2
);
2018 for (i
= 0; i
< iface
->num_bss
; i
++) {
2019 hapd
= iface
->bss
[i
];
2020 ubus_notify(ctx
, &hapd
->ubus
.obj
, "radar-detected", b
.head
, -1);
2024 #ifdef CONFIG_WNM_AP
2025 static void hostapd_ubus_notify_bss_transition_add_candidate_list(
2026 const u8
*candidate_list
, u16 candidate_list_len
)
2031 if (candidate_list_len
== 0)
2034 cl_str
= blobmsg_alloc_string_buffer(&b
, "candidate-list", candidate_list_len
* 2 + 1);
2035 for (i
= 0; i
< candidate_list_len
; i
++)
2036 snprintf(&cl_str
[i
*2], 3, "%02X", candidate_list
[i
]);
2037 blobmsg_add_string_buffer(&b
);
2042 void hostapd_ubus_notify_bss_transition_response(
2043 struct hostapd_data
*hapd
, const u8
*addr
, u8 dialog_token
, u8 status_code
,
2044 u8 bss_termination_delay
, const u8
*target_bssid
,
2045 const u8
*candidate_list
, u16 candidate_list_len
)
2047 #ifdef CONFIG_WNM_AP
2050 if (!hapd
->ubus
.obj
.has_subscribers
)
2056 blob_buf_init(&b
, 0);
2057 blobmsg_add_macaddr(&b
, "address", addr
);
2058 blobmsg_add_u8(&b
, "dialog-token", dialog_token
);
2059 blobmsg_add_u8(&b
, "status-code", status_code
);
2060 blobmsg_add_u8(&b
, "bss-termination-delay", bss_termination_delay
);
2062 blobmsg_add_macaddr(&b
, "target-bssid", target_bssid
);
2064 hostapd_ubus_notify_bss_transition_add_candidate_list(candidate_list
, candidate_list_len
);
2066 ubus_notify(ctx
, &hapd
->ubus
.obj
, "bss-transition-response", b
.head
, -1);
2070 int hostapd_ubus_notify_bss_transition_query(
2071 struct hostapd_data
*hapd
, const u8
*addr
, u8 dialog_token
, u8 reason
,
2072 const u8
*candidate_list
, u16 candidate_list_len
)
2074 #ifdef CONFIG_WNM_AP
2075 struct ubus_event_req ureq
= {};
2079 if (!hapd
->ubus
.obj
.has_subscribers
)
2085 blob_buf_init(&b
, 0);
2086 blobmsg_add_macaddr(&b
, "address", addr
);
2087 blobmsg_add_u8(&b
, "dialog-token", dialog_token
);
2088 blobmsg_add_u8(&b
, "reason", reason
);
2089 hostapd_ubus_notify_bss_transition_add_candidate_list(candidate_list
, candidate_list_len
);
2091 if (!hapd
->ubus
.notify_response
) {
2092 ubus_notify(ctx
, &hapd
->ubus
.obj
, "bss-transition-query", b
.head
, -1);
2096 if (ubus_notify_async(ctx
, &hapd
->ubus
.obj
, "bss-transition-query", b
.head
, &ureq
.nreq
))
2099 ureq
.nreq
.status_cb
= ubus_event_cb
;
2100 ubus_complete_request(ctx
, &ureq
.nreq
.req
, 100);
2107 void hostapd_ubus_notify_apup_newpeer(
2108 struct hostapd_data
*hapd
, const u8
*addr
, const char *ifname
)
2110 if (!hapd
->ubus
.obj
.has_subscribers
)
2113 blob_buf_init(&b
, 0);
2114 blobmsg_add_macaddr(&b
, "address", addr
);
2115 blobmsg_add_string(&b
, "ifname", ifname
);
2117 ubus_notify(ctx
, &hapd
->ubus
.obj
, "apup-newpeer", b
.head
, -1);
2119 #endif // def CONFIG_APUP
2121 void hostapd_ubus_notify_csa(struct hostapd_data
*hapd
, int freq
)
2123 if (!hapd
->ubus
.obj
.has_subscribers
)
2126 blob_buf_init(&b
, 0);
2127 blobmsg_add_string(&b
, "ifname", hapd
->conf
->iface
);
2128 blobmsg_add_u32(&b
, "freq", freq
);
2129 blobmsg_printf(&b
, "bssid", MACSTR
, MAC2STR(hapd
->conf
->bssid
));
2131 ubus_notify(ctx
, &hapd
->ubus
.obj
, "channel-switch", b
.head
, -1);