zoukankan      html  css  js  c++  java
  • chapter 2: Representing and manipulating information

        

        C allows conversion between unsigned and signed. The rule is that the underlying bit representation is not changed. Generally, most numbers are signed by default.For example, when declaring a
    constant such as 12345 or 0x1A2B, the value is considered signed. Adding character ‘U’ or ‘u’ as a suffix creates an unsigned constant, e.g., 12345U or 0x1A2Bu.
        When printing numeric values with printf, the directives %d, %u, and %x are used to print a number as a signed decimal, an unsigned decimal, and in hexadecimal format, respectively. Note that printf does not make use of any type information, and so it is possible to print a value of type int with directive %u and
    a value of type unsigned with directive %d. For example, consider the following code:

          int x = -1;
          unsigned u = 2147483648; /* 2 to the 31st */


          printf("x = %u = %d ", x, x);
          printf("u = %u = %d ", u, u);
    When run on a 32-bit machine, it prints the following:
         x = 4294967295 = -1
         u = 2147483648 = -2147483648


    buger from:


          Suppose, however, that some malicious programmer writes code that calls copy_from_kernel with
    a negative value of maxlen. Then the minimum computation on line 16 will compute this value for len,
    which will then be passed as the parameter n to memcpy. Note, however, that parameter n is declared as
    having data type size_t. This data type is declared (via typedef) in the library file stdio.h. Typically it is defined to be unsigned int on 32-bit machines. Since argument n is unsigned, memcpy will treat it as a very large, positive number and attempt to copy that many bytes from the kernel region to the user’s buffer. Copying that many bytes (at least 231) will not actually work, because the program will encounter invalid addresses in the process, but the program could read regions of the kernel memory for which it is not authorized.

         We can see that this problem arises due to the mismatch between data types: in one place the
    length parameter is signed; in another place it is unsigned. Such mismatches can be a source of bugs
    and, as this example shows, can even lead to security vulnerabilities. Fortunately, there were no reported cases where a programmer had exploited the vulnerability in FreeBSD. They issued a security advisory, “FreeBSD-SA-02:38.signed-error,” advising system administrators on how to apply a patch that would remove the vulnerability. The bug can be fixed by declaring parameter maxlen to copy_from_kernel
    to be of type size_t, to be consistent with parameter n of memcpy. We should also declare local variable len and the return value to be of type size_t.


  • 相关阅读:
    高级人力资源管理最喜欢的工具;笔迹分析测试的六大好处
    我与时尚MM的那些事儿
    当幸福来敲门
    perl 模板
    一些R函数【自己使用过,保存】
    关于异步加载、缓存图片、软引用等
    android线程同步
    现半透明的popupwindow
    android中的MotionEvent 及其它事件处理
    android客户端从服务器端获取json数据并解析
  • 原文地址:https://www.cnblogs.com/keanuyaoo/p/3343494.html
Copyright © 2011-2022 走看看