about summary refs log tree commit diff stats
path: root/vendor/quadtree
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/quadtree')
0 files changed, 0 insertions, 0 deletions
#n47'>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









































































                                                                                                                                                                                   
/* Copyright 2021 The libwifi Authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "deauthentication.h"
#include "common.h"

#include <errno.h>
#include <stdlib.h>
#include <string.h>

/**
 * TODO: potentally write a parsed_to_gen function that converts a parsed deauth back into
 * something that can be passed directly into the interface?
 */

/**
 * Deauthentication frames can originate from the BSS or the STA, with no way to know
 * who sent the frame by looking at just the frame alone. Because of this, they are
 * parsed into a struct libwifi_parsed_deauth instead of a libwifi_bss or libwifi_sta.
 *
 * ┌─────────────────────────────────────────────┐
 * │        Header (Ordered or Unordered)        │  ── Deauthentication Header
 * ├─────────────────────────────────────────────┤
 * │               Fixed Parameters              │  ─┐
 * ├─────────────────────────────────────────────┤   ├──  Deauthentication Body
 * │              Tagged  Parameters             │  ─┘
 * └─────────────────────────────────────────────┘
 */
int libwifi_parse_deauth(struct libwifi_parsed_deauth *deauth, struct libwifi_frame *frame) {
    memset(deauth, 0, sizeof(struct libwifi_parsed_deauth));

    int tags_len = 0;

    if (frame->frame_control.type != TYPE_MANAGEMENT || frame->frame_control.subtype != SUBTYPE_DEAUTH) {
        return -EINVAL;
    }

    deauth->ordered = frame->frame_control.flags.ordered;

    if (deauth->ordered) {
        memcpy(&deauth->frame_header.ordered, &frame->header.mgmt_ordered,
               sizeof(struct libwifi_mgmt_ordered_frame_header));
        tags_len = (frame->len - sizeof(struct libwifi_mgmt_ordered_frame_header) -
                    sizeof(struct libwifi_deauth_fixed_parameters));
    } else {
        memcpy(&deauth->frame_header.unordered, &frame->header.mgmt_unordered,
               sizeof(struct libwifi_mgmt_unordered_frame_header));
        tags_len = (frame->len - sizeof(struct libwifi_mgmt_unordered_frame_header) -
                    sizeof(struct libwifi_deauth_fixed_parameters));
    }

    unsigned char *body = (unsigned char *) frame->body;

    memcpy(&deauth->fixed_parameters, body, sizeof(struct libwifi_deauth_fixed_parameters));
    body += sizeof(struct libwifi_deauth_fixed_parameters);

    deauth->tags.parameters = malloc(tags_len);
    memcpy(&deauth->tags.parameters, body, tags_len);
    memcpy(&deauth->tags.length, &tags_len, sizeof(tags_len));

    return 0;
}