Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Would you spend one week changing strcpy to lstrcpyn ?

Would you spend one week changing strcpy to lstrcpyn ?

Scheduled Pinned Locked Moved The Lounge
c++htmlcomquestioncareer
33 Posts 21 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G GuimaSun

    The newest idea from my company is a brute force approach to decrease Dr.Watson reports from our big C++ web application. Then, someone will have to change about 2000 strcpy to lstrcpyn passing a sizeof argument to make sure at least an overrun will not occur anymore. (believe it) Forget about using search and replace bots, it´s not safe. I think it could be made wasting 1 week of a BORED programmer and he would get a Tendinitis or something alike. If I were the choice, it ain't any better idea than look for a new job :( GuimaSun www.nexsun.com.br NEXSUN TechZone

    A Offline
    A Offline
    Atlantys
    wrote on last edited by
    #6

    I've done worse as a co-op student (intern). Then again, I was just cheap temporary labor. The kindest thing you can do for a stupid person, and for the gene pool, is to let him expire of his own dumb choices. [Roger Wright on stupid people] We're like private member functions [John Theal on R&D] We're figuring out the parent thing as we go though. Kinda like setting up Linux for the first time ya' know... [Nitron]

    1 Reply Last reply
    0
    • G GuimaSun

      The newest idea from my company is a brute force approach to decrease Dr.Watson reports from our big C++ web application. Then, someone will have to change about 2000 strcpy to lstrcpyn passing a sizeof argument to make sure at least an overrun will not occur anymore. (believe it) Forget about using search and replace bots, it´s not safe. I think it could be made wasting 1 week of a BORED programmer and he would get a Tendinitis or something alike. If I were the choice, it ain't any better idea than look for a new job :( GuimaSun www.nexsun.com.br NEXSUN TechZone

      R Offline
      R Offline
      realJSOP
      wrote on last edited by
      #7

      If the code had been written properly to begin with, strcpy wouldn't be giving you headaches. Deal with it and stop whining like a little girl... ------- sig starts "I've heard some drivers saying, 'We're going too fast here...'. If you're not here to race, go the hell home - don't come here and grumble about going too fast. Why don't you tie a kerosene rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001

      J 1 Reply Last reply
      0
      • G GuimaSun

        The newest idea from my company is a brute force approach to decrease Dr.Watson reports from our big C++ web application. Then, someone will have to change about 2000 strcpy to lstrcpyn passing a sizeof argument to make sure at least an overrun will not occur anymore. (believe it) Forget about using search and replace bots, it´s not safe. I think it could be made wasting 1 week of a BORED programmer and he would get a Tendinitis or something alike. If I were the choice, it ain't any better idea than look for a new job :( GuimaSun www.nexsun.com.br NEXSUN TechZone

        T Offline
        T Offline
        Todd Smith
        wrote on last edited by
        #8

        Write your own strcpy and check for bad writes. Todd Smith

        P 1 Reply Last reply
        0
        • P peterchen

          GuimaSun wrote: think it could be made wasting 1 week of a BORED programmer and he would get a Tendinitis or something alike. The one who put in the unchecked strcpy's deserves better. I hereby award him the unique possibility to debug a cross-process-CoTaskMemAlloc-in-PROPVARIANT-allocation-vanishes-after-calling-server "issue"


          we are here to help each other get through this thing, whatever it is Vonnegut jr.
          boost your code || Fold With Us! || sighist | doxygen

          J Offline
          J Offline
          Jim Crafton
          wrote on last edited by
          #9

          and they have to use command line GDB to debug it with! :) ¡El diablo está en mis pantalones! ¡Mire, mire! Real Mentats use only 100% pure, unfooled around with Sapho Juice(tm)! SELECT * FROM User WHERE Clue > 0 0 rows returned

          1 Reply Last reply
          0
          • G GuimaSun

            The newest idea from my company is a brute force approach to decrease Dr.Watson reports from our big C++ web application. Then, someone will have to change about 2000 strcpy to lstrcpyn passing a sizeof argument to make sure at least an overrun will not occur anymore. (believe it) Forget about using search and replace bots, it´s not safe. I think it could be made wasting 1 week of a BORED programmer and he would get a Tendinitis or something alike. If I were the choice, it ain't any better idea than look for a new job :( GuimaSun www.nexsun.com.br NEXSUN TechZone

            D Offline
            D Offline
            Daniel Turini
            wrote on last edited by
            #10

            I'd spend this same week changing strcpy and static char buffers for std::string. :cool: Yes, even I am blogging now!

            J G 2 Replies Last reply
            0
            • D Daniel Turini

              I'd spend this same week changing strcpy and static char buffers for std::string. :cool: Yes, even I am blogging now!

              J Offline
              J Offline
              Jim Crafton
              wrote on last edited by
              #11

              I am surprised nobody else pointed this out. He mentions a C++ app - what the hell is he (they) doing *not* using std::string as opposed to strcpy? :doh: ¡El diablo está en mis pantalones! ¡Mire, mire! Real Mentats use only 100% pure, unfooled around with Sapho Juice(tm)! SELECT * FROM User WHERE Clue > 0 0 rows returned

              1 Reply Last reply
              0
              • P peterchen

                GuimaSun wrote: think it could be made wasting 1 week of a BORED programmer and he would get a Tendinitis or something alike. The one who put in the unchecked strcpy's deserves better. I hereby award him the unique possibility to debug a cross-process-CoTaskMemAlloc-in-PROPVARIANT-allocation-vanishes-after-calling-server "issue"


                we are here to help each other get through this thing, whatever it is Vonnegut jr.
                boost your code || Fold With Us! || sighist | doxygen

                G Offline
                G Offline
                GuimaSun
                wrote on last edited by
                #12

                peterchen wrote: The one who put in the unchecked strcpy's deserves better. The guy that makes those mistakes will not fix the code, cause just an "experienced programmer" will put the hands on it...he will just write "fresh" code :) GuimaSun www.nexsun.com.br NEXSUN TechZone

                1 Reply Last reply
                0
                • D Daniel Turini

                  I'd spend this same week changing strcpy and static char buffers for std::string. :cool: Yes, even I am blogging now!

                  G Offline
                  G Offline
                  GuimaSun
                  wrote on last edited by
                  #13

                  I love std::string too, but the system was written in pure C (not C++ as I said sorry) and the boss consider C++ slow and unsafe :rolleyes: We could just rename .c to c++ and use extern "c" on WINAPI functions. GuimaSun www.nexsun.com.br NEXSUN TechZone

                  S D A 3 Replies Last reply
                  0
                  • G GuimaSun

                    I love std::string too, but the system was written in pure C (not C++ as I said sorry) and the boss consider C++ slow and unsafe :rolleyes: We could just rename .c to c++ and use extern "c" on WINAPI functions. GuimaSun www.nexsun.com.br NEXSUN TechZone

                    S Offline
                    S Offline
                    Shog9 0
                    wrote on last edited by
                    #14

                    GuimaSun wrote: the boss consider C++ slow and unsafe Ugh... bounds checking or no, you're doomed.
                    nOTHING lIES sTILL lONG...

                    1 Reply Last reply
                    0
                    • R realJSOP

                      If the code had been written properly to begin with, strcpy wouldn't be giving you headaches. Deal with it and stop whining like a little girl... ------- sig starts "I've heard some drivers saying, 'We're going too fast here...'. If you're not here to race, go the hell home - don't come here and grumble about going too fast. Why don't you tie a kerosene rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001

                      J Offline
                      J Offline
                      Jorgen Sigvardsson
                      wrote on last edited by
                      #15

                      You beat me to it. :) -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben.

                      1 Reply Last reply
                      0
                      • G GuimaSun

                        The newest idea from my company is a brute force approach to decrease Dr.Watson reports from our big C++ web application. Then, someone will have to change about 2000 strcpy to lstrcpyn passing a sizeof argument to make sure at least an overrun will not occur anymore. (believe it) Forget about using search and replace bots, it´s not safe. I think it could be made wasting 1 week of a BORED programmer and he would get a Tendinitis or something alike. If I were the choice, it ain't any better idea than look for a new job :( GuimaSun www.nexsun.com.br NEXSUN TechZone

                        J Offline
                        J Offline
                        Jorgen Sigvardsson
                        wrote on last edited by
                        #16

                        Ehm.. if you're getting Dr. Watson reports, don't you think the error lies elsewhere than in strcpy()? :~ -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben.

                        G 1 Reply Last reply
                        0
                        • G GuimaSun

                          I love std::string too, but the system was written in pure C (not C++ as I said sorry) and the boss consider C++ slow and unsafe :rolleyes: We could just rename .c to c++ and use extern "c" on WINAPI functions. GuimaSun www.nexsun.com.br NEXSUN TechZone

                          D Offline
                          D Offline
                          Dale Thompson
                          wrote on last edited by
                          #17

                          GuimaSun wrote: the boss consider C++ slow and unsafe Oh god. Wonder what he thinks of C#? It sounds like you job isn't gaining you marketable experience anyhow - get the hell out!!! Dale Thompson

                          M 1 Reply Last reply
                          0
                          • J Jorgen Sigvardsson

                            Ehm.. if you're getting Dr. Watson reports, don't you think the error lies elsewhere than in strcpy()? :~ -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben.

                            G Offline
                            G Offline
                            GuimaSun
                            wrote on last edited by
                            #18

                            When it happens, we get the asm/hex log, which points to the fault address. 90% of them are related to strcpy...hard truth :sigh: GuimaSun www.nexsun.com.br NEXSUN TechZone

                            J 1 Reply Last reply
                            0
                            • G GuimaSun

                              When it happens, we get the asm/hex log, which points to the fault address. 90% of them are related to strcpy...hard truth :sigh: GuimaSun www.nexsun.com.br NEXSUN TechZone

                              J Offline
                              J Offline
                              Jorgen Sigvardsson
                              wrote on last edited by
                              #19

                              Yeah, but strcpy() isn't called by itself, is it? :) -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben.

                              N 1 Reply Last reply
                              0
                              • J Jorgen Sigvardsson

                                Yeah, but strcpy() isn't called by itself, is it? :) -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben.

                                N Offline
                                N Offline
                                Nemanja Trifunovic
                                wrote on last edited by
                                #20

                                Maybe the implementation they use is recursive :eek:


                                My programming blahblahblah blog. If you ever find anything useful here, please let me know to remove it.

                                J 1 Reply Last reply
                                0
                                • G GuimaSun

                                  The newest idea from my company is a brute force approach to decrease Dr.Watson reports from our big C++ web application. Then, someone will have to change about 2000 strcpy to lstrcpyn passing a sizeof argument to make sure at least an overrun will not occur anymore. (believe it) Forget about using search and replace bots, it´s not safe. I think it could be made wasting 1 week of a BORED programmer and he would get a Tendinitis or something alike. If I were the choice, it ain't any better idea than look for a new job :( GuimaSun www.nexsun.com.br NEXSUN TechZone

                                  M Offline
                                  M Offline
                                  Michael Dunn
                                  wrote on last edited by
                                  #21

                                  If strcpy() calls are generating crashes, it means your copies are overwriting the stack. This is a security risk. Unchecked strcpy() calls lead to buffer overflow attacks. If your boss doesn't want to fix numerous security holes, I would feel very worried if I were a user of that software. -- I'm Michael Dunn and I approve this post. Vote Trogdor in oh-four!

                                  M 1 Reply Last reply
                                  0
                                  • M Michael Dunn

                                    If strcpy() calls are generating crashes, it means your copies are overwriting the stack. This is a security risk. Unchecked strcpy() calls lead to buffer overflow attacks. If your boss doesn't want to fix numerous security holes, I would feel very worried if I were a user of that software. -- I'm Michael Dunn and I approve this post. Vote Trogdor in oh-four!

                                    M Offline
                                    M Offline
                                    m_mond
                                    wrote on last edited by
                                    #22

                                    Which is why you use strncpy... There's a very simple way to avoid basic stack overflows built in to the language. It still blows my mind that people still don't use the 'n' string and memory function. On the other hand, this is also a case for using string objects of some sort. That's something worth spending the time to fix, IMO.

                                    M 1 Reply Last reply
                                    0
                                    • T Todd Smith

                                      Write your own strcpy and check for bad writes. Todd Smith

                                      P Offline
                                      P Offline
                                      peterchen
                                      wrote on last edited by
                                      #23

                                      won't help with stack buffers.


                                      we are here to help each other get through this thing, whatever it is Vonnegut jr.
                                      boost your code || Fold With Us! || sighist | doxygen

                                      1 Reply Last reply
                                      0
                                      • G GuimaSun

                                        The newest idea from my company is a brute force approach to decrease Dr.Watson reports from our big C++ web application. Then, someone will have to change about 2000 strcpy to lstrcpyn passing a sizeof argument to make sure at least an overrun will not occur anymore. (believe it) Forget about using search and replace bots, it´s not safe. I think it could be made wasting 1 week of a BORED programmer and he would get a Tendinitis or something alike. If I were the choice, it ain't any better idea than look for a new job :( GuimaSun www.nexsun.com.br NEXSUN TechZone

                                        A Offline
                                        A Offline
                                        Alvaro Mendez
                                        wrote on last edited by
                                        #24

                                        I recommend a couple of things: 1. Don't use regular strncpy -- it has it's own problems. Use your own function, similar to this:

                                        char* STRNCPY(char* szTarget, const char* szSource, unsigned sizeOfTarget)
                                        {
                                        assert(szTarget);
                                        assert(szSource);
                                        assert(sizeOfTarget);

                                        strncpy(szTarget, szSource, sizeOfTarget - 1);
                                        szTarget[sizeOfTarget - 1] = 0;

                                        return szTarget;
                                        }

                                        2. Create a macro for copying into string buffers that calls the above function:

                                        #define STRCPY(szTarget, szSource) STRNCPY(szTarget, szSource, sizeof(szTarget))

                                        Then you can replace all cases where you have this type of code:

                                        char buffer[100];
                                        ....
                                        strcpy(buffer, someText);

                                        with

                                        char buffer[100];
                                        ....
                                        STRCPY(buffer, someText);

                                        This ensures you only copy no more than 99 (size - 1) characters into the buffer plus the null terminator. Regards, Alvaro


                                        Our enemies are innovative and resourceful, and so are we. They never stop thinking about new ways to harm our country and our people, and neither do we. - George W. Bush

                                        G 1 Reply Last reply
                                        0
                                        • M Member 96

                                          Nope, but then again I'm the boss so I would probably just make someone else do it if our organization were so brain damaged as to still be coding in anything but .net this century.


                                          84 keys are alright with me!

                                          J Offline
                                          J Offline
                                          Jeremy Falcon
                                          wrote on last edited by
                                          #25

                                          So you honestly believe anyone not coding in .NET is brain damaged? Do you really have a view of the programming world or not? .NET is a great replacement for VB and it's nice for business/data driven apps. But, I wouldn't want a diver or a game (amongst other things) written in .NET. BTW, just throwing off responsibility for a screw up to someone who's not at fault just because you don't feel like doing it makes you a bad boss IMO. Also, the captain goes down with the ship, so if somebody is brain dead and screws up, it's ultimately your fault anyway because you're the boss. Jeremy Falcon

                                          A 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups