- 
                Notifications
    
You must be signed in to change notification settings  - Fork 158
 
Packet capture prototype #229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
42c2e65
              dc5c303
              6b66de6
              86f862c
              f2cb80a
              192019f
              325ea9c
              6eab537
              e846bec
              e4cc266
              78edb5e
              8d9217d
              384f081
              34aad53
              6c1e7c0
              c37c24c
              e55d2c1
              2a0c827
              ebb1489
              File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| 
          
            
          
           | 
    @@ -71,6 +71,7 @@ apps = [ | |
| 'netecho', | ||
| 'nic', | ||
| 'nterm', | ||
| 'pcapctl', | ||
| 'ofw', | ||
| 'pci', | ||
| 'ping', | ||
| 
          
            
          
           | 
    ||
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| /** @addtogroup pcapctl pcapctl | ||
| * @brief Dump network packets | ||
| * @ingroup apps | ||
| */ | 
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,100 @@ | ||
| /* | ||
| * Copyright (c) 2023 Nataliia Korop | ||
| * All rights reserved. | ||
| * | ||
| * Redistribution and use in source and binary forms, with or without | ||
| * modification, are permitted provided that the following conditions | ||
| * are met: | ||
| * | ||
| * - Redistributions of source code must retain the above copyright | ||
| * notice, this list of conditions and the following disclaimer. | ||
| * - Redistributions in binary form must reproduce the above copyright | ||
| * notice, this list of conditions and the following disclaimer in the | ||
| * documentation and/or other materials provided with the distribution. | ||
| * - The name of the author may not be used to endorse or promote products | ||
| * derived from this software without specific prior written permission. | ||
| * | ||
| * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | ||
| * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
| * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
| * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
| * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
| * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
| * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
| * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| */ | ||
| 
     | 
||
| /** @addtogroup pcapctl | ||
| * @{ | ||
| */ | ||
| /** @file pcapctl app | ||
| */ | ||
| 
     | 
||
| #include <stdio.h> | ||
| #include <str.h> | ||
| #include <errno.h> | ||
| 
     | 
||
| #include "pcapctl_dump.h" | ||
| 
     | 
||
| #define NAME "pcapctl" | ||
| 
     | 
||
| #define LOGGER(msg, ...) \ | ||
| fprintf(stderr, \ | ||
| "[PCAP %s:%d]: " msg "\n", \ | ||
| __FILE__, __LINE__, \ | ||
| ##__VA_ARGS__\ | ||
| ) | ||
| 
     | 
||
| pcapctl_sess_t sess; | ||
| 
     | 
||
| static void start_dumping(const char *name) | ||
| { | ||
| pcapctl_dump_start(name, &sess); | ||
| } | ||
| 
     | 
||
| static void stop_dumping(void) | ||
| { | ||
| pcapctl_dump_stop(&sess); | ||
| } | ||
| 
     | 
||
| static void usage(const char *progname) | ||
| { | ||
| fprintf(stderr, "Usage:\n"); | ||
| fprintf(stderr, " %s start <outfile>: Packets will be written to <outfile>\n", progname); | ||
| fprintf(stderr, " %s stop: Dumping stops\n", progname); | ||
| 
     | 
||
| } | ||
| 
     | 
||
| int main(int argc, char *argv[]) | ||
| { | ||
| if (argc < 2) { | ||
| usage(argv[0]); | ||
| return 1; | ||
| } else { | ||
| errno_t rc = pcapctl_dump_init(&sess); | ||
| if (rc != EOK) { | ||
| fprintf(stderr, "Error initializing ...\n"); | ||
| return 1; | ||
| } | ||
| if (str_cmp(argv[1], "start") == 0) { | ||
| if (argc != 3) { | ||
| usage(argv[0]); | ||
| return 1; | ||
| } | ||
| start_dumping(argv[2]); | ||
| } else if (str_cmp(argv[1], "stop") == 0) { | ||
| stop_dumping(); | ||
| fprintf(stdout, "Dumping was stopped\n"); | ||
| return EOK; | ||
| } else { | ||
| usage(argv[0]); | ||
| return 1; | ||
| } | ||
| } | ||
| return 0; | ||
| } | ||
| 
     | 
||
| /** @} | ||
| */ | ||
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| # | ||
| # Copyright (c) 2023 Nataliia Korop | ||
| # All rights reserved. | ||
| # | ||
| # Redistribution and use in source and binary forms, with or without | ||
| # modification, are permitted provided that the following conditions | ||
| # are met: | ||
| # | ||
| # - Redistributions of source code must retain the above copyright | ||
| # notice, this list of conditions and the following disclaimer. | ||
| # - Redistributions in binary form must reproduce the above copyright | ||
| # notice, this list of conditions and the following disclaimer in the | ||
| # documentation and/or other materials provided with the distribution. | ||
| # - The name of the author may not be used to endorse or promote products | ||
| # derived from this software without specific prior written permission. | ||
| # | ||
| # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | ||
| # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
| # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
| # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
| # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
| # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
| # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
| # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| # | ||
| deps = ['pcap'] | ||
| src = files('main.c') | 
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| 
          
            
          
           | 
    @@ -50,6 +50,8 @@ | |
| #include <ops/nic.h> | ||
| #include "e1k.h" | ||
| 
     | 
||
| #include "pcapdump_iface.h" | ||
| #include "pcap_iface.h" | ||
| #define NAME "e1k" | ||
| 
     | 
||
| #define E1000_DEFAULT_INTERRUPT_INTERVAL_USEC 250 | ||
| 
          
            
          
           | 
    @@ -173,6 +175,7 @@ typedef struct { | |
| 
     | 
||
| /** Lock for EEPROM access */ | ||
| fibril_mutex_t eeprom_lock; | ||
| 
     | 
||
| } e1000_t; | ||
| 
     | 
||
| /** Global mutex for work with shared irq structure */ | ||
| 
          
            
          
           | 
    @@ -1188,6 +1191,8 @@ static void e1000_receive_frames(nic_t *nic) | |
| nic_frame_t *frame = nic_alloc_frame(nic, frame_size); | ||
| if (frame != NULL) { | ||
| memcpy(frame->data, e1000->rx_frame_virt[next_tail], frame_size); | ||
| pcapdump_packet(nic_get_pcap_iface(nic), frame->data, frame->size); | ||
                
       | 
||
| 
     | 
||
| nic_received_frame(nic, frame); | ||
| } else { | ||
| ddf_msg(LVL_ERROR, "Memory allocation failed. Frame dropped."); | ||
| 
          
            
          
           | 
    @@ -2202,6 +2207,15 @@ errno_t e1000_dev_add(ddf_dev_t *dev) | |
| if (rc != EOK) | ||
| goto err_add_to_cat; | ||
| 
     | 
||
| errno_t pcap_rc = pcapdump_init(nic_get_pcap_iface(nic)); | ||
| 
     | 
||
| if (pcap_rc != EOK) { | ||
| printf("Failed creating pcapdump port\n"); | ||
| } | ||
| rc = ddf_fun_add_to_category(fun, "pcap"); | ||
                
       | 
||
| if (rc != EOK) | ||
| goto err_add_to_cat; | ||
| 
     | 
||
| return EOK; | ||
| 
     | 
||
| err_add_to_cat: | ||
| 
          
            
          
           | 
    @@ -2365,7 +2379,7 @@ static void e1000_send_frame(nic_t *nic, void *data, size_t size) | |
| } | ||
| 
     | 
||
| memcpy(e1000->tx_frame_virt[tdt], data, size); | ||
| 
     | 
||
| pcapdump_packet(nic_get_pcap_iface(nic), data, size); | ||
| tx_descriptor_addr->phys_addr = PTR_TO_U64(e1000->tx_frame_phys[tdt]); | ||
| tx_descriptor_addr->length = size; | ||
| 
     | 
||
| 
          
            
          
           | 
    ||
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| 
          
            
          
           | 
    @@ -77,6 +77,7 @@ libs = [ | |
| 'math', | ||
| 'minix', | ||
| 'nettl', | ||
| 'pcap', | ||
| 'ofw', | ||
| 'pcm', | ||
| 'pcut', | ||
| 
          
            
          
           | 
    ||
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| /** @addtogroup libpcap libpcap | ||
| * @ingroup libs | ||
| */ | 
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this is used anywhere.