Click here to Skip to main content
Click here to Skip to main content

Trace Route using raw sockets

By , 28 Jul 2003
 

Sample Image - TraceRoutes.jpg

Introduction

This Project was undertaken on the needs to explore Sockets and its different Uses . I started by making a Ping program which pinged the Network Addresses . The ping program was inspired by FAQs at http://tangentsoft.net/wskfaq/ and mostly used their Functions!!!. The Route Program is an enhancement of same program (Ping program ) which used Raw Sockets.

What and Why?

Ping program basically sends ICMP Packets to Remote Host and asks it to send back an reply and calculates the Time to get the reply back. Trace Route traces the Route of our packets via network , identifying the IP Address of every host .

How To Run it ?

The standard Trace Route (tracert.exe) which comes with Windows Operating System was basically an example for me to emulate. The short comings ( which is my point of view ) with the standard Trace Route was the delay it had which takes three (and I presume ICMP Packet replies ) . My program takes 1 ICMP reply. As soon as I get ICMP_ECHO( integer 0 ) reply, I know that the packet has reached the destination and the program exits.

Go to Command Prompt : in the Dos Prompt Type the Path of the EXE and with space type the URL or ip Address like C:\>TracesRoutes.exe x.x.x.x timeout(Optional). Remember to type a valid IP Address otherwise an error message "Destination Unreachable " would be given.

The Code

All of the code is the same except a few changes here and there. The main function is Decode_Reply
int decode_reply( IPHeader* reply, int bytes, sockaddr_in* from ) 
{
......
    // Make sure the reply is sane
    if (bytes < header_len + ICMP_MIN) 
  {
        cerr << "too few bytes from " << inet_ntoa(from->sin_addr) << endl;
        return -1;
    }
    else if ( icmphdr->type != ICMP_ECHO_REPLY ) 
  {
        if ( icmphdr->type != ICMP_TTL_EXPIRE ) 
    {
            if ( icmphdr->type == ICMP_DEST_UNREACH ) 
      {
                cerr << "Destination unreachable" << endl;
            }
            else 
      {
                cerr << "Unknown ICMP packet type " << int(icmphdr->type) <<
                        " received" << endl;
            }
            return -1;
        }
        // If "TTL expired", fall through.  Next test will fail if we
        // try it, so we need a way past it.
    }
    else if (icmphdr->id != (USHORT)GetCurrentProcessId()) 
  {
        // Must be a reply for another pinger running locally, so just
        // ignore it.
        return -2;
    }

 
    // Okay, we ran the gamut, so the packet must be legal -- dump it
    if (( icmphdr->type == ICMP_TTL_EXPIRE ) || 
        ( icmphdr->type == ICMP_ECHO_REPLY ) ) 
  {
    in_addr in;
    in.S_un.S_addr = reply->source_ip; 
    cout << "\n Source IP " << inet_ntoa( in ) ; 
    int nTime = GetTickCount () - ulTimestamp ;
    if ( nTime < 0 )
    {
      cout << "  Time: " << "<10 ms." << endl;
    }
    else
    {
      cout << "  Time: " << ( GetTickCount() - ulTimestamp ) 
         << " ms." << endl;
    }
    }
.........
    return 0;
}

Problems?

If you are facing problems, contact your system administrator . I have tested this Software on both Private and Public IPs . Mostly System Administrators disable this functionality.If you are on a network you can trace some other Computer on same network to test it.

Changes

I have added Destination Unreachable Case. The code is messy so if you find anything which can make it better do send in a line at my Web Site or my Email.

Comments?

Kindly Send ur Comments through http://babarq.netfirms.com/. Thanks.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Babar Qaisrani
Web Developer
Canada Canada
Member
Smile | :)

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
General[Message Deleted]memberit.ragester2 Apr '09 - 21:50 
[Message Deleted]
GeneralRouter connection blockingmemberEru8727 Nov '07 - 12:59 
GeneralA Big MistakememberPrasshhant Pugalia11 Nov '07 - 18:53 
Generalusing c#memberx_sanctus14 Nov '05 - 14:23 
QuestionPlagiarize?sussAnonymous22 May '04 - 15:03 
AnswerRe: Plagiarize?sussAnonymous22 May '04 - 15:15 
QuestionCan you give me a copy of src?memberdeer@webmail.hebut.edu.cn2 Jun '03 - 17:09 
AnswerRe: Can you give me a copy of src?memberBabar Qaisrani7 Jun '03 - 3:08 
AnswerRe: Can you give me a copy of src?memberthreebochen14 Jul '03 - 16:23 
GeneralRe: Can you give me a copy of src?memberBabar Qaisrani28 Jul '03 - 19:01 
AnswerRe: Can you give me a copy of src?memberAboutJune23 Jul '03 - 18:51 
GeneralRe: Can you give me a copy of src?memberBabar Qaisrani28 Jul '03 - 19:00 
AnswerRe: Can you give me a copy of src?memberBabar Qaisrani28 Jul '03 - 19:02 
GeneralWonderful Article!!memberAisha Ikram26 Nov '02 - 19:54 
GeneralRe: Wonderful Article!!memberNormski28 Jul '03 - 21:00 
GeneralRe: Wonderful Article!!memberBabar Qaisrani30 Jul '03 - 19:14 
GeneralRe: Wonderful Article!!editorNishant S18 Sep '03 - 1:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 29 Jul 2003
Article Copyright 2002 by Babar Qaisrani
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid