Tagged Questions
0
votes
0answers
26 views
Mac OS 10.7.5 BSD copyfile() EINVAL when copying files having double-quotes in the name
I'm trying to use BSD copyfile(...) to copy a file to a mounted AFP share (/Volumes/exchange) with an Obj-C++ code like this:
Minimal example:
#include <string>
#include <string.h>
...
0
votes
1answer
14 views
bsd or posix way get preferred domain controller?
Is there any way to get preferred domain controller name using BSD/POSIX C function calls?
Please, advice if there are any functions that can be used to get preferred DC name under Mac OS X.
-1
votes
1answer
77 views
Is there any better way to generate guid in gcc
I had a requirement to generate guid in C,
How can generate guid(http://en.wikipedia.org/wiki/Globally_unique_identifier) in libc .
I need to generate guids randomly .
0
votes
1answer
46 views
How to use copyout in kernel?
In the kernel space I want to copy a character from the terminal and put it in a user space.
I am trying this code, but it's not working:
char mychar;
int result;
mychar = getch();
result = ...
5
votes
3answers
171 views
Non-blocking access to the file system
When writing a non-blocking program (handling multiple sockets) which at a certain point needs to open files using open(2), stat(2) files or open directories using opendir(2), how can I ensure that ...
1
vote
1answer
76 views
tcphdr field name change between OS/X and Linux
I've developed some network code on OS/X, and I'm getting bit by the renamed fields in struct tcphdr. I'm getting a bunch of errors of the form: "dpkt.c:597:36: error: ‘struct tcphdr’ has no member ...
2
votes
1answer
75 views
C random() & setstate function not behaving as expected
I am unsure why these two blocks of code give different outputs:
unsigned int seed1 = 0;
char state1[256];
initstate(seed1, state1, 256);
printf("%10ld\n", random());
printf("%10ld\n", random());
// ...
0
votes
1answer
131 views
Conflict error when trying to compile a syscall .c file in freebsd
i am trying to add a new syscall to freebsd 8. i am using freebsd on VMplayer .when i trying to
compile the module i give this error :
my code is(i also have a Makefile file) :
#include ...
1
vote
2answers
86 views
BSD C server not comparing string from buffer
So I am trying to compare the buffer to a string with strcmp. I want the server to respond in a special way when something the client says "man" and otherwise just reply with got it. I cant see what i ...
0
votes
3answers
295 views
Getting number of cores (*not* HT threads)
I have tried sysconf(_SC_NPROCESSORS_ONLN) and sysconf(_SC_NPROCESSORS_CONF), but they both return total number of (as Intel calls it in their CPU documentation) Threads (as in: hyper-threading ...
1
vote
0answers
133 views
OpenBSD Kernel module calling network functions
As a proof-of-concept, plus a handy paranoid tool, I'm writing an OpenBSD LKM that will connect to an IRC channel, and report when hooked syscalls are executed.
This is so I can essentially have a ...
3
votes
1answer
679 views
OS requirements for arc4random_uniform()
How do I find out the minimum OS requirements for using arc4random_uniform()? Is it defined in BSD? If so, from what version? Does it run on any Mac OS X version? How about iOS versions? Is there any ...
0
votes
3answers
161 views
BSD Sockets ip6 inet_pton and how to retrieve the scope ID
I am currently working on an IPv6 class and use inet_pton to retrieve the actual binary representation of the IP from a string i.e.:
AdressV6::AdressV6(const String & _ip)
{
int ...
2
votes
1answer
200 views
Using `splice` for Linux… what else for other systems?
On recent Linux kernels, afaict, the fastest way of copying a file or a subset of a file to another file is through the use of the very nice splice system call. This system gets the kernel to manage ...
2
votes
4answers
361 views
Determine OS during runtime
Neither ISO C nor POSIX offer functionality to determine the underlying OS during runtime. From a theoretical point of view, it doesn't matter since C offers wrappers for the most common system calls, ...
2
votes
2answers
536 views
Portable equivalent of OPEN_MAX
nftw wants a parameter for number of file handles to use, and doesn't seem to have a way to say 'as many as possible'. Specifying 255 seems to work on Linux, but fails on BSD. Apparently OPEN_MAX is ...
0
votes
2answers
78 views
Vfork() and more corruption
my question is on execution what will happen to parent stack?
main()
{
f();
g();
}
f()
{
vfork();
}
g()
{
int blast[100],i;
for(i=0;i<100;i++)
blast[i]=i;
}
1
vote
1answer
125 views
nftw different on BSD?
I'm trying to get all .c files in a directory tree using nftw with the following code:
static int gf(const char *path, const struct stat *st, int t, struct FTW *ftw) {
if (t != FTW_F)
...
3
votes
1answer
360 views
C network programming?
What libraries are the best (in terms of performance) for network programming in C on windows and UNIX?
I'm quite interested with respect to high frequency trading.
I have heard about BSD and POSIX ...
4
votes
1answer
4k views
How to use list from sys/queue.h?
Currently, I have implemented a singly linked list, like so:
struct PeerNode {
struct Peer* cargo;
struct PeerNode* next;
};
...and I have a struct that contains a couple of these linked ...
1
vote
1answer
241 views
BSD - use any port available?
All of the tutorials and examples I find online always specify a port number like 7000 or 4950 etc. What if those ports are open on one computer, but another? Seems like that case makes doing that a ...
1
vote
3answers
260 views
How to find ip addresses with BSD sockets?
I am using BSD sockets over a wlan. I have noticed that my server computer's ip address changes occasionally when I connect to it. The problem is that I enter the ip address into my code as a literal ...
3
votes
1answer
583 views
Raw Sockets on BSD Operating Systems
I've been writing some sockets code in C. I need modify packet headers and control how they're sent out, so I took the raw sockets approach. However, the code I wrote will not compile on BSD systems ...
1
vote
3answers
354 views
Seg Fault on getaddrinfo()
I am getting a segmentation fault on my getaddrinfo call and cannot figure out why. It happens on both my server and client. Some code (server side) is -
class TcpServer {
public:
...
2
votes
2answers
5k views
Using select() for non-blocking sockets
I am trying to use the select function to have non-blocking i/o between a server and 1 client (no more) where the communication flows nicely (can send at any time and the other will receive without ...
10
votes
1answer
875 views
How much memory locked in a process
Using getrlimit(RLIMIT_MEMLOCK), one can get the allowed amount of locked memory a process can allocate (mlock() or mlockall()).
But how to retrieve the currently locked memory amount ?
For ...
5
votes
4answers
2k views
execve file not found when stracing the very same file!
someone i know encountered a problem when running 'lmutil' so i asked them to strace -f lmutil. Why is execve failing with "No such file"!!! It makes no sense, since I am straceing the very same ...
1
vote
0answers
158 views
Xcode: wordexp() does not work some times, returns 0 matched words for “~”
I'm seeing some weird behaviour when using wordexp() in a minimal C program when started within Xcode. I cannot reproduce this by starting the compiled binary from the command line.
#include ...
0
votes
2answers
1k views
how to get thread ID as integer on BSD in C/C++?
Does anyone know to get the current thread ID as an integer on BSD?
i found this
#ifdef RTHREADS
299 STD { pid_t sys_getthrid(void); }
300 STD { int sys_thrsleep(void *ident, int ...
2
votes
4answers
529 views
Is there a good reason to write my own daemonize function instead of using daemon(3)?
There are a lot of example implementations of daemons on the net. Most that I saw do not use the daemon(3) function to run the program in the background. Is that just a matter of taste, ignorance, or ...
6
votes
4answers
816 views
Use OpenBSD's malloc, realloc and free in my program
I would like to use OpenBSD's implementation of malloc, realloc and free on my Debian lenny desktop rather than glibc's.
Are they simply drop in replacements: will they work on my Linux desktop ?
...
19
votes
6answers
1k views
Good collection of libraries for C?
I'm looking for a good collection of libraries for ANSI-C, stuff for handling vectors, hash maps, binary tress, string processing, etc.
20
votes
7answers
7k views
AT&T vs Intel Syntax and Limitations? [closed]
To me, Intel syntax is much easier to read. If I go traipsing through assembly forest concentrating only on Intel syntax, will I miss anything? Is there any reason I would want to switch to AT&T ...
3
votes
4answers
1k views
Hooking into the TCP Stack in C
It's not just a capture I'm looking to do here. I want to first capture the packet, then in real time, check the payload for specific data, remove it, inject a signature and reinject the packet into ...
5
votes
5answers
4k views
Reading Other Process' Memory in OS X / BSD
I've been trying to understand how to read the memory of other processes on Mac OS X, but I'm not having much luck. I've seen many examples online using ptrace with PEEKDATA and such, however it ...

