User terminus - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T10:08:58Zhttp://stackoverflow.com/feeds/user/9232http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1800439/what-language-will-protect-my-source-code/1800478#18004780Answer by terminus for What language will protect my source code?terminus2009-11-25T22:48:15Z2009-11-25T22:48:15Z<p>Try finding an obfuscator. As the name suggests it obfuscates the code enough that reverse-engineering it will not be trivial.</p>
<p>Or use C/C++. Those can be disassembled, but that's it.</p>
<p>Of course, this is just enough to keep the not-sufficiently-competents from understanding and reverse-engineering the code.</p>
http://stackoverflow.com/questions/1798729/c-message-passing-doubts/1798782#17987820Answer by terminus for C++ message passing doubtsterminus2009-11-25T17:56:11Z2009-11-25T17:56:11Z<p>In C++, you can have reference counting too, like here:</p>
<p><a href="http://library.gnome.org/devel/glibmm/stable/classGlib%5F1%5F1RefPtr.html" rel="nofollow">http://library.gnome.org/devel/glibmm/stable/classGlib%5F1%5F1RefPtr.html</a></p>
<p>In this case, you can pass Glib::RefPtr objects. When the last of these RefPtr-s are destroyed associated to a pointer, the object is deleted itself.</p>
<p>If you do not want to use glibmm, you can implement it too, it's not too difficult. Also, probably STL and boost have something like these too.</p>
<p>Just watch out for circular references.</p>
http://stackoverflow.com/questions/1798704/x86-and-x64-stack-frames/1798735#17987351Answer by terminus for x86 and x64 stack framesterminus2009-11-25T17:49:55Z2009-11-25T17:49:55Z<p>Well, for starters all the saved registers (EIP, ESP, etc.) will be 64bit long. This means that in your example the 'int' will be 64bits. But as far as I know, the stack has the same format, albeit with different sizes.</p>
http://stackoverflow.com/questions/60763/learning-kernel-hacking-and-embedded-development-at-home/65433#654331Answer by terminus for Learning kernel hacking and embedded development at home?terminus2008-09-15T18:28:35Z2009-11-23T21:01:59Z<p>For starters, the best way is to read a lot of code. Since Linux is Open Source, you'll find dozens of drivers. Find one that works in some ways like what you want to write. You'll find some decent and relatively easy-to-understand code (the loopback device, ROM fs, etc.)</p>
<p>You can also use the <a href="http://lxr.linux.no" rel="nofollow">lxr.linux.no</a>, which is the Linux code cross-referenced. If you have to find out how something works, and need to look into the code, this is a good and easy way.</p>
<p>There's also an O'Reilly book (Understanding the Linux Kernel, the 3rd edition is about the 2.6 kernels) or if you want something for free, you can use the Advanced Linux Programing book (<a href="http://www.advancedlinuxprogramming.com/" rel="nofollow">http://www.advancedlinuxprogramming.com/</a>). There are also a lot of specific documentation about file systems, networking, etc.</p>
http://stackoverflow.com/questions/1696009/mysqlnumrows-segfaults/1696038#16960382Answer by terminus for Mysql_num_rows() Segfaultsterminus2009-11-08T11:00:10Z2009-11-08T11:00:10Z<p>From the mysql documentation:</p>
<p>mysql_store_result() returns a null pointer if the statement didn't return a result set (for example, if it was an INSERT statement).</p>
<p>You are updating so you have a NULL as results.</p>
<p>Try something like this:</p>
<pre><code>Result = mysql_store_result( Connection );
if (Result) {
RowsReturned = mysql_num_rows( Result );
} else {
RowsReturned = 0;
}
</code></pre>
http://stackoverflow.com/questions/1695925/how-do-i-import-a-third-party-lib-into-git/1696016#16960160Answer by terminus for How do I import a third party lib into git? terminus2009-11-08T10:51:25Z2009-11-08T10:51:25Z<p>My preference is to create a git repository, update it periodically (git commit -a -m 'Update') and simply link it in my projects (as a directory (ln -s, junction, etc) or as a shared library). For files you don't need, use .gitignore.</p>
http://stackoverflow.com/questions/1575067/python-multiprocessing-restrict-number-of-cores-used/1575133#15751331Answer by terminus for Python multiprocessing: restrict number of cores usedterminus2009-10-15T21:16:49Z2009-10-15T21:16:49Z<p>You might want to look into the following package:</p>
<p><a href="http://pypi.python.org/pypi/affinity" rel="nofollow">http://pypi.python.org/pypi/affinity</a></p>
<p>It is a package that uses sched_setaffinity and sched _getaffinity.</p>
<p>The drawback is that it is highly Linux-specific.</p>
http://stackoverflow.com/questions/85880/determine-if-a-function-exists-in-bash4Determine if a function exists in bashterminus2008-09-17T17:57:38Z2009-10-08T22:46:38Z
<p>Currently I'm doing some unit tests which are executed from bash. Unit tests are initialized, executed and cleaned up in a bash script. This script usualy contains an init(), execute() and cleanup() functions. But they are not mandatory. I'd like to test if they are or are not defined.</p>
<p>I did this previously by greping and seding the source, but it seemed wrong. Is there a more elegant way to do this?</p>
<p>Edit: The following sniplet works like a charm:</p>
<pre><code>fn_exists()
{
type $1 | grep -q 'shell function'
}
</code></pre>
http://stackoverflow.com/questions/1180184/what-is-the-difference-between-a-language-construct-and-a-built-in-function-in/1180287#11802874Answer by terminus for What is the difference between a language construct and a "built-in" function in PHP?terminus2009-07-24T21:39:00Z2009-07-24T21:48:11Z<p>After wading through the code, I've found that php parses some of statements in a yacc file. So they are special cases.</p>
<p>(see Zend/zend_language_parser.y)</p>
<p>Apart from that I don't think that there are other differences.</p>
http://stackoverflow.com/questions/395114/vim-syntax-coloring-how-do-i-highlight-long-lines-only/395117#3951171Answer by terminus for Vim syntax coloring: How do I highlight long lines only?terminus2008-12-27T16:06:19Z2008-12-27T16:06:19Z<p>I use the following method:</p>
<pre><code>hi gitError ctermbg=Red
match gitError /^.*\s$/
2match gitError /^.\{120\}.*$/
</code></pre>
<p>(These match some git pre-commit hooks)</p>
<p>The second line should be of interrest to you.</p>
http://stackoverflow.com/questions/281818/unmangling-the-result-of-stdtypeinfoname3Unmangling the result of std::type_info::nameterminus2008-11-11T18:52:31Z2008-11-12T02:14:22Z
<p>I'm currently working on some logging code that supposed to - among other things - print information about the calling function. This should be relatively easy, standard C++ has a type_info class. This contains the name of the typeid'd class/function/etc. but it's mangled. It's not very usefull. I.e. typeid(std::vector).name() returns "St6vectorIiSaIiEE".</p>
<p>Is there a way to produce something usefull from this? Like 'std::vector' for the above example. If it only works for non-template classes, that's fine too.</p>
<p>The sollution should work for gcc, but it would be better if I could port it. It's for logging so it's not so important that it can't be turned of, but it should be helpfull for debugging.</p>
http://stackoverflow.com/questions/281818/unmangling-the-result-of-stdtypeinfoname/282009#2820091Answer by terminus for Unmangling the result of std::type_info::nameterminus2008-11-11T20:14:36Z2008-11-11T20:14:36Z<p>I also found a macro called _ _ PRETTY _ FUNCTION _ _, which does the trick. It gives a pretty function name (figures :)). This is what I needed.</p>
<p>I.e. it gives me the following:</p>
<pre><code>virtual bool mutex::do_unlock()
</code></pre>
<p>But I don't think it works on other compilers.</p>
http://stackoverflow.com/questions/109000/how-to-simulate-memory-allocation-errors/109008#1090082Answer by terminus for How to simulate memory allocation errorsterminus2008-09-20T19:00:17Z2008-10-24T06:18:03Z<p>I can give a Linux (maybe POSIX) specific version: __malloc_hook, __realloc_hook, __free_hook. These are declared in malloc.h.</p>
<p>EDIT: A little elaboration: these are function pointers (see malloc.h and their man-page for the exact declaration), but beware: these are not exactly standards, just GNU extensions. So if portability is an issue, don't use this.</p>
<p>A little less platform-dependent solution might be that you declare a malloc macro. If you're testing, this calls a hook and the real malloc.</p>
<p>memhook.h:</p>
<pre><code>#define malloc(s) (my_malloc(s))
</code></pre>
<p>memhook.c:</p>
<pre><code>#include "memhook.h"
#undef malloc
#include <stdlib.h>
</code></pre>
<p>etc.</p>
<p>You can use this to detect leaks, randomly fail the allocation, etc.</p>
http://stackoverflow.com/questions/76408/which-of-these-scripting-languages-is-more-appropriate-for-pen-testing/76470#764700Answer by terminus for Which of these scripting languages is more appropriate for pen-testing?terminus2008-09-16T20:17:11Z2008-10-08T07:36:44Z<p>Well, what kind of exploits are you thinking about? If you want to write something that needs low level stuff (ptrace, raw sockets, etc.) then you'll need to learn C. But both Perl and Python can be used. The real question is which one suits your style more?</p>
<p>As for toolmaking, Perl has good string-processing abilities, is closer to the system, has good support, but IMHO it's very confusing. I prefer Python: it's a clean, easy to use, easy to learn language with good support (complete language/lib reference, 3rd party libs, etc.). And it's (strictly IMHO) cool.</p>
http://stackoverflow.com/questions/111307/whats-pnp-and-why-is-it-such-a-famous-question/111329#1113296Answer by terminus for What's "P=NP?", and why is it such a famous question?terminus2008-09-21T16:14:21Z2008-09-24T15:50:23Z<p>A short summary from my humble knowledge:</p>
<p>There are some easy computational problems (like finding the shortest path between two points in a graph), which can be calculated pretty fast ( O(n^k), where n is the size of the input and k is a constant (in case of graphs, it's eighter the number of the vertexes or edges)).</p>
<p>Other problems, like finding a path that crosses every vertex in a graph or getting the RSA private key from the public key is harder (O(e^n)).</p>
<p>But CS speak tells that the problem is that we cannot 'convert' a non-deterministic Turing-machine to a deterministic one, we can, however, transform non-deterministic finine automatons (like the regex parser) into deterministic ones (well, you can, but the run-time of the machine will take long). That is, we have to try every possible path (usually smart CS professors can exclude a few ones).</p>
<p>It's interresting, because nobody even has any idea of the sollution. Some say it's true, some say it's false, but there is no consensus. Another interresting thing is that a sollution would be harmfull for public/private key encriptions (like RSA). You could break them as easily as generating an RSA key is now.</p>
<p>And it's a pretty inspiring problem.</p>
http://stackoverflow.com/questions/123295/do-you-use-the-branches-tags-trunk-convention/123324#1233241Answer by terminus for Do you use the branches/tags/trunk convention?terminus2008-09-23T19:44:24Z2008-09-23T19:44:24Z<p>This depends on how big the project is. We have some stuff (granted, in git, but the concept is the same) that is fairly big. Every developer uses his/her own branch, there is a testing and mainline branch. We also tag the releases, and if there are version-specific fixes, a branch is created so fixes can be integrated fairly easy.</p>
<p>This setup has advantages: we don't get in each others hair during developement. But the downside is that we need an integrator to put the commits from the developers branch into the testing branch, and then to the mainline one.</p>
<p>If the project is small, then it's just overhead, but you never know how big a project will get.</p>
http://stackoverflow.com/questions/122877/why-does-strcpy-trigger-a-segmentation-fault-with-global-arguments/122885#1228857Answer by terminus for Why does strcpy trigger a segmentation fault with global arguments?terminus2008-09-23T18:36:27Z2008-09-23T18:49:07Z<p>You forgot to allocate and initialize temp:</p>
<pre><code>temp = (char *)malloc(TEMP_SIZE);
</code></pre>
<p>Just make sure TEMP_SIZE is big enough. You can also calculate this at run-time, then make sure the size is enough (should be at least strlen(path))</p>
http://stackoverflow.com/questions/116436/how-important-is-having-bscs-as-minimum-requirement-for-new-programmer-hires/116464#1164642Answer by terminus for How important is having BSCS as minimum requirement for new programmer hires?terminus2008-09-22T18:06:21Z2008-09-22T18:06:21Z<p>I'm a C developer at a company making firewalls, network audit stuff, etc. and my education isn't complete. Half the employees are waiting for their diplomas, and nobody has any trouble. So it might be good, but it's not an excluding factor. It helps to have someone on the interviews who's technically adept enough to see if an applicant is a hack with a diploma or someone talented without one.</p>
http://stackoverflow.com/questions/109710/likely-unlikely-macros-in-the-linux-kernel10likely/unlikely macros in the Linux kernelterminus2008-09-20T23:04:16Z2008-09-20T23:21:28Z
<p>I've been digging through some parts of the Linux kernel, and found calls like this:</p>
<pre><code>if (unlikely(fd < 0))
{
/* Do something */
}
</code></pre>
<p>or</p>
<pre><code>if (likely(!err))
{
/* Do something */
}
</code></pre>
<p>I've found the definition of them:</p>
<pre><code>#define likely(x) __builtin_expect((x),1)
#define unlikely(x) __builtin_expect((x),0)
</code></pre>
<p>I know that they are for optimalization, but how do they work? And how much performance/size decrease can be expected from using them? And is it worth the hassle (and losing the portability propably) at least in bottleneck code (in userspace, of course).</p>
http://stackoverflow.com/questions/109644/c-pointer-assignment-behavior/109649#1096492Answer by terminus for C pointer assignment behaviorterminus2008-09-20T22:41:27Z2008-09-20T22:41:27Z<p>temp2 will not be updated, but temp1 will point to the next item. So if temp1 is 0x89abcdef and temp1->next is 0x89b00000, then after you're done, temp1 will be 0x89b00000 and temp2 will be 0x89abcdef.</p>
<p>Assuming you're making a linked list, of course.</p>
http://stackoverflow.com/questions/109553/how-can-i-programatically-manage-iptables-rules-on-the-fly/109585#1095850Answer by terminus for How can I programatically manage iptables rules on the fly?terminus2008-09-20T22:13:11Z2008-09-20T22:20:10Z<p>MarkR's right, you're not supposed to do this. The easiest way is to call iptables from the script or to write the iptables config and 'restore' it.</p>
<p>Still, if you want to, read the source of iptables. iptables uses matches and tables as shared objects. You can use the source or them.</p>
<p>The Linux netfilter also has some include files under /usr/include/netfilter*. These are somewhat low-level functions. It is what iptables uses. This is as near an API as one can get without iptables.</p>
<p>But this API is 'messy'. Bear in mind that it was designed to be used only by iptables. It's not very well documented, you can hit very specific problems, the API can change fairly quick without any warning, so an upgrade propably will break your code, etc.</p>
http://stackoverflow.com/questions/105681/tcp-send-queue-depth/105839#1058390Answer by terminus for TCP send queue depthterminus2008-09-19T21:36:31Z2008-09-19T21:36:31Z<p>If you want to determine wheter to add data or not: don't worry, send will block until the data is in the queue. If you don't want it to block, you can tell it to send(2):</p>
<pre><code>send(socket, buf, buflen, MSG_DONTWAIT);
</code></pre>
<p>But this only works on Linux.</p>
<p>You can also set the socket to non-blocking:</p>
<pre><code>fcntl(socket, F_SETFD, O_NONBLOCK);
</code></pre>
<p>This way write will return an error (EAGAIN) if the data cannot be written to the stream.</p>
http://stackoverflow.com/questions/105653/int-matrix-with-pointers-in-c-memory-allocation-confusion/105682#1056820Answer by terminus for int matrix with pointers in C - memory allocation confusionterminus2008-09-19T21:14:59Z2008-09-19T21:14:59Z<p>You only freed the first row (or column) of first_matrix. Write another function like this:</p>
<pre><code>void free_matrix(int **matrix, int rows)
{
int i;
for(i=0; i<rows; i++)
{
free(matrix[i]);
}
free(matrix);
}
</code></pre>
<p>You might want to make the matrix into a struct to store it's row and column count.</p>
http://stackoverflow.com/questions/105477/c-pointer-q-malloc-inside-a-fn-call-appears-to-be-getting-freed-on-return-of-fn/105507#1055075Answer by terminus for C pointer Q: malloc inside a fn call appears to be getting freed on return of fn?terminus2008-09-19T20:48:12Z2008-09-19T20:48:12Z<p>You've allocated arr in foo, but that pointers value is stored in the call stack. If you want to do this, do it like this:</p>
<pre><code>void foo( int ** arr) {
*arr = (int *)malloc( sizeof(int) * 25 );
(*arr)[3] = 69;
}
</code></pre>
<p>And in main, simply pass a pointer to foo (like foo(&arr))</p>
http://stackoverflow.com/questions/105252/how-do-i-convert-between-big-endian-and-little-endian-values-in-c/105354#1053540Answer by terminus for How do I convert between big-endian and little-endian values in C++?terminus2008-09-19T20:33:14Z2008-09-19T20:33:14Z<p>On POSIX systems there is the endian.h, which can be determined what encoding your system uses. From there it's something like this:</p>
<pre><code>unsigned int change_endian(unsinged int x)
{
unsigned char *ptr = (unsigned char *)&x;
return (ptr[0] << 24) | (ptr[1] << 16) | (ptr[2] << 8) | ptr[3];
}
</code></pre>
<p>This swaps the order (from big-endian to little endian):</p>
<p>If you have the number 0xDEADBEEF (on a little endian system stored as 0xEFBEADDE), ptr[0] will be 0xEF, ptr[1] is 0xBE, etc.</p>
<p>But if you want to use it for networking, then htons, htonl and htonll (and their inverse ntohs, ntohl and ntohll) will be helpfull to converting from host order to network order.</p>
http://stackoverflow.com/questions/94161/where-to-put-helper-scripts-with-gnu-autoconf-automake/94259#942592Answer by terminus for Where to put helper-scripts with GNU autoconf/automake?terminus2008-09-18T16:38:40Z2008-09-18T16:38:40Z<p>Add something like this to Makefile.am</p>
<pre><code>scriptsdir = $(prefix)/bin
scripts_DATA = awkscript1 awkscript2
</code></pre>
<p>In this case it will install awkscript in $(prefix)/bin (you can also use $(bindir)).</p>
<p>Note: Dont forget that the first should be named name + dir (scripts -> scriptsdir) and the second should be name + _DATA (scripts -> scripts_DATA).</p>
http://stackoverflow.com/questions/93954/how-to-programatically-create-videos/93975#939750Answer by terminus for How to programatically create videos ?terminus2008-09-18T16:07:46Z2008-09-18T16:07:46Z<p>Not a library, but mplayer has the ability to encode JPEG sequences to any kind of format. It runs on Linux, Windows, BSD and other platforms and you can write a python script if you want to use it with python.</p>
http://stackoverflow.com/questions/86708/what-should-be-included-in-a-programmers-code-of-ethics/86755#867550Answer by terminus for What should be included in a programmer's code of ethics?terminus2008-09-17T19:34:42Z2008-09-17T19:34:42Z<p>Don't give bad code out of your hands.</p>
<p>(People might read it and get wrong ideas)</p>
http://stackoverflow.com/questions/85770/php-get-sort-problem/85792#857924Answer by terminus for php $_GET sort problemterminus2008-09-17T17:48:40Z2008-09-17T17:48:40Z<pre><code>ksort($_GET);
</code></pre>
<p>This should sort the $_GET array by it's keys. krsort for reverse order.</p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/85710#857100Answer by terminus for What's Your Motto As A Developer/Programmer?terminus2008-09-17T17:38:43Z2008-09-17T17:38:43Z<p>"Bloody instructions which being taught return to plague their inventors" -- Machbet</p>
http://stackoverflow.com/questions/1877291/php-html-output/1877305#1877305Comment by terminus on PHP HTML outputterminus2009-12-09T22:17:48Z2009-12-09T22:17:48ZAlso, in the second case, he forgot <?php as wellhttp://stackoverflow.com/questions/1696009/mysqlnumrows-segfaults/1696038#1696038Comment by terminus on Mysql_num_rows() Segfaultsterminus2009-11-08T11:16:18Z2009-11-08T11:16:18ZNo problem. :-)http://stackoverflow.com/questions/1575142/comparing-arbitrary-bit-sequences-in-a-byte-array-in-c/1575186#1575186Comment by terminus on Comparing arbitrary bit sequences in a byte array in cterminus2009-10-15T21:31:25Z2009-10-15T21:31:25ZSorry, I misunderstood the question.http://stackoverflow.com/questions/395114/vim-syntax-coloring-how-do-i-highlight-long-lines-only/395117#395117Comment by terminus on Vim syntax coloring: How do I highlight long lines only?terminus2008-12-27T17:07:50Z2008-12-27T17:07:50ZSorry, no idea. The problem is that it may not be doable with regexps. You know, it would propably require a stack machine.http://stackoverflow.com/questions/281818/unmangling-the-result-of-stdtypeinfoname/281880#281880Comment by terminus on Unmangling the result of std::type_info::nameterminus2008-11-12T16:08:10Z2008-11-12T16:08:10ZIt's not complete, since I don't know the namespace. This is allready in my code. But thanks anyway.http://stackoverflow.com/questions/281818/unmangling-the-result-of-stdtypeinfoname/281905#281905Comment by terminus on Unmangling the result of std::type_info::nameterminus2008-11-11T20:11:26Z2008-11-11T20:11:26Zc++filt doesn't cut it, I need this stuff (or most of it) at compile-time, mostly done with macros.http://stackoverflow.com/questions/281818/unmangling-the-result-of-stdtypeinfoname/281860#281860Comment by terminus on Unmangling the result of std::type_info::nameterminus2008-11-11T20:10:40Z2008-11-11T20:10:40ZI took, it's deprecated, according to the message I get.http://stackoverflow.com/questions/111307/whats-pnp-and-why-is-it-such-a-famous-question/111329#111329Comment by terminus on What's "P=NP?", and why is it such a famous question?terminus2008-09-24T15:49:34Z2008-09-24T15:49:34ZOk, I'll update the answer.http://stackoverflow.com/questions/122877/why-does-strcpy-trigger-a-segmentation-fault-with-global-arguments/122885#122885Comment by terminus on Why does strcpy trigger a segmentation fault with global arguments?terminus2008-09-23T18:49:59Z2008-09-23T18:49:59ZSorry, misunderstood 'strcpy' for 'strcat'. I fixed my answerhttp://stackoverflow.com/questions/111294/marketing-software-onlineComment by terminus on Marketing Software Onlineterminus2008-09-21T16:03:37Z2008-09-21T16:03:37ZWhy is this a programming question, again?http://stackoverflow.com/questions/85880/determine-if-a-function-exists-in-bash/85903#85903Comment by terminus on Determine if a function exists in bashterminus2008-09-21T05:56:27Z2008-09-21T05:56:27ZWhy not rewrite it?http://stackoverflow.com/questions/109644/c-pointer-assignment-behaviorComment by terminus on C pointer assignment behaviorterminus2008-09-20T22:57:07Z2008-09-20T22:57:07ZYou're welcome :)http://stackoverflow.com/questions/109644/c-pointer-assignment-behaviorComment by terminus on C pointer assignment behaviorterminus2008-09-20T22:52:39Z2008-09-20T22:52:39ZUhhh, two errors. It should be
Struct FunkyStruct *temp1 = &x, *temp2 = &x;http://stackoverflow.com/questions/109553/how-can-i-programatically-manage-iptables-rules-on-the-fly/109585#109585Comment by terminus on How can I programatically manage iptables rules on the fly?terminus2008-09-20T22:20:44Z2008-09-20T22:20:44ZThere, in the answer.http://stackoverflow.com/questions/105653/int-matrix-with-pointers-in-c-memory-allocation-confusion/105677#105677Comment by terminus on int matrix with pointers in C - memory allocation confusionterminus2008-09-19T21:26:56Z2008-09-19T21:26:56ZYou can't declare a variable in the for cycle in C.