sockets/ud_ucase.h

This is sockets/ud_ucase.h (Listing 57-5, page 1171), an example from the book, The Linux Programming Interface.

The source code file is copyright 2024, Michael Kerrisk, and is licensed under the GNU General Public License, version 3.

This page shows the "distribution" or "book" version of the file (why are there two versions?), or the differences between the two versions. You can switch between the views using the tabs below.

In the listing below, the names of Linux system calls and C library functions are hyperlinked to manual pages from the Linux man-pages project, and the names of functions implemented in the book are hyperlinked to the implementations of those functions.

  Cover of The Linux Programming Interface
+/* ud_ucase.h
+
+   Header file for ud_ucase_sv.c and ud_ucase_cl.c.
+
+   These programs employ sockets in /tmp. This makes it easy to compile
+   and run the programs. However, for a security reasons, a real-world
+   application should never create sensitive files in /tmp. (As a simple of
+   example of the kind of security problems that can result, a malicious
+   user could create a file using the name defined in SV_SOCK_PATH, and
+   thereby cause a denial of service attack against this application.
+   See Section 38.7 of "The Linux Programming Interface" for more details
+   on this subject.)
+*/
 #include <sys/un.h>
 #include <sys/socket.h>
 #include <ctype.h>
 #include "tlpi_hdr.h"
 
 #define BUF_SIZE 10             /* Maximum size of messages exchanged
                                    between client and server */
 
 #define SV_SOCK_PATH "/tmp/ud_ucase"

Note that, in most cases, the programs rendered in these web pages are not free standing: you'll typically also need a few other source files (mostly in the lib/ subdirectory) as well. Generally, it's easier to just download the entire source tarball and build the programs with make(1). By hovering your mouse over the various hyperlinked include files and function calls above, you can see which other source files this file depends on.

Valid XHTML 1.1