Sponsored Content
The Lounge What is on Your Mind? Anybody want to talk about Dirty Cow? Post 302984343 by wisecracker on Tuesday 25th of October 2016 01:37:01 AM
Old 10-25-2016
Firstly take a look here:-

dirtycow.github.io/dirtyc0w.c at master * dirtycow/dirtycow.github.io * GitHub

Next this one could be even worse as the user numbers are much more to be able to target...
Make sute you watch the video; free software anyone? OUCH!

Using Rowhammer bitflips to root Android phones is now a thing | Ars Technica
This User Gave Thanks to wisecracker For This Post:
 

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Quick-and-dirty g++ compilation

I am creating a small bash file that will take one argument and compile it: #!/bin/bash OUT=${$1%.cpp} # C++ source files always end in .cpp g++ -Wall $1 -o $OUT chmod 777 $OUT The error message says 'bad substitution', namely where OUT is defined. How to fix this? (1 Reply)
Discussion started by: figaro
1 Replies

2. AIX

Can't mount showing 0506-342 The superblock on /dev/fslv00 is dirty

Dear All Last day in Aix 5.2 server by executing # df –g I found following: Filesystem GB blocks Free %Used Iused %Iused Mounted on . . /dev/fslv00 58.00 136.70 -135% 212103 1% /sprod After shutting down by following command # shutdown –h And when... (1 Reply)
Discussion started by: xa52000
1 Replies

3. UNIX for Advanced & Expert Users

Finding volumes with mirrored DRL(Dirty Region Log)

hi, How do I find VxVM volumes which have a mirrored DRL. thanks in advance Prasi (2 Replies)
Discussion started by: prasi_in
2 Replies

4. Shell Programming and Scripting

noob question - is awk the tool to clean dirty text files?

Hi, nevermind. I think I've found the answer. It appears I was looking for index, match, sub, and gsub. I want to write a shell script that will clean the html out of a bunch of files and format the data for import into excel. Awk seems like a powerful tool, but it seems oriented to... (1 Reply)
Discussion started by: yogert909
1 Replies

5. Shell Programming and Scripting

Need a quick and dirty solution

I have a list of multiple versions of software. The list is formated as follows: NAME VERSION I simply need to pull out the highest version of each software, for example: Original File a v1.0 a v1.1 a v1.2 b v2.1 b v2.2 b v2.21 b v3.0 Output a v1.2 b v3.0 (13 Replies)
Discussion started by: Finja
13 Replies

6. UNIX for Advanced & Expert Users

Superblock marked dirty

Good morning! I met a problem on a FS with AIX 5.3 It's not possible to mount the FS because of a dirty superblock. I tried few things without success. I need your help to solve my problem guys. Do you have any idea please? Thanks a lot drp01,/home/root # mount /GSPRES/data Replaying... (9 Replies)
Discussion started by: Castelior
9 Replies

7. Linux

Broadcom under Fedora 18 (Spherical Cow)

So I'm having a problem getting a Broadcom BCM4312 wireless controller to work under the broadcom-wl module $uname Linux 3.8.11-200.fc18.x86_64 #1 SMP Wed May 1 19:44:27 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux lspci -v 05:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g... (2 Replies)
Discussion started by: Skrynesaver
2 Replies
libcaca dirty rectangle manipulation(3caca)			      libcaca			       libcaca dirty rectangle manipulation(3caca)

NAME
libcaca dirty rectangle manipulation - Functions __extern int caca_disable_dirty_rect (caca_canvas_t *) Disable dirty rectangles. __extern int caca_enable_dirty_rect (caca_canvas_t *) Enable dirty rectangles. __extern int caca_get_dirty_rect_count (caca_canvas_t *) Get the number of dirty rectangles in the canvas. __extern int caca_get_dirty_rect (caca_canvas_t *, int, int *, int *, int *, int *) Get a canvas's dirty rectangle. __extern int caca_add_dirty_rect (caca_canvas_t *, int, int, int, int) Add an area to the canvas's dirty rectangle list. __extern int caca_remove_dirty_rect (caca_canvas_t *, int, int, int, int) Remove an area from the dirty rectangle list. __extern int caca_clear_dirty_rect_list (caca_canvas_t *) Clear a canvas's dirty rectangle list. Detailed Description These functions manipulate dirty rectangles for optimised blitting. Function Documentation __extern int caca_disable_dirty_rect (caca_canvas_t *cv) Disable dirty rectangle handling for all libcaca graphic calls. This is handy when the calling application needs to do slow operations within a known area. Just call caca_add_dirty_rect() afterwards. This function is recursive. Dirty rectangles are only reenabled when caca_enable_dirty_rect() is called as many times. This function never fails. Parameters: cv A libcaca canvas. Returns: This function always returns 0. __extern int caca_enable_dirty_rect (caca_canvas_t *cv) This function can only be called after caca_disable_dirty_rect() was called. If an error occurs, -1 is returned and errno is set accordingly: o EINVAL Dirty rectangles were not disabled. Parameters: cv A libcaca canvas. Returns: 0 in case of success, -1 if an error occurred. __extern int caca_get_dirty_rect_count (caca_canvas_t *cv) Get the number of dirty rectangles in a canvas. Dirty rectangles are areas that contain cells that have changed since the last reset. The dirty rectangles are used internally by display drivers to optimise rendering by avoiding to redraw the whole screen. Once the display driver has rendered the canvas, it resets the dirty rectangle list. Dirty rectangles are guaranteed not to overlap. This function never fails. Parameters: cv A libcaca canvas. Returns: The number of dirty rectangles in the given canvas. __extern int caca_get_dirty_rect (caca_canvas_t *cv, intr, int *x, int *y, int *width, int *height) Get the canvas's given dirty rectangle coordinates. The index must be within the dirty rectangle count. See caca_get_dirty_rect_count() for how to compute this count. If an error occurs, no coordinates are written in the pointer arguments, -1 is returned and errno is set accordingly: o EINVAL Specified rectangle index is out of bounds. Parameters: cv A libcaca canvas. r The requested rectangle index. x A pointer to an integer where the leftmost edge of the dirty rectangle will be stored. y A pointer to an integer where the topmost edge of the dirty rectangle will be stored. width A pointer to an integer where the width of the dirty rectangle will be stored. height A pointer to an integer where the height of the dirty rectangle will be stored. Returns: 0 in case of success, -1 if an error occurred. __extern int caca_add_dirty_rect (caca_canvas_t *cv, intx, inty, intwidth, intheight) Add an invalidating zone to the canvas's dirty rectangle list. For more information about the dirty rectangles, see caca_get_dirty_rect(). This function may be useful to force refresh of a given zone of the canvas even if the dirty rectangle tracking indicates that it is unchanged. This may happen if the canvas contents were somewhat directly modified. If an error occurs, -1 is returned and errno is set accordingly: o EINVAL Specified rectangle coordinates are out of bounds. Parameters: cv A libcaca canvas. x The leftmost edge of the additional dirty rectangle. y The topmost edge of the additional dirty rectangle. width The width of the additional dirty rectangle. height The height of the additional dirty rectangle. Returns: 0 in case of success, -1 if an error occurred. Referenced by caca_blit(), caca_clear_canvas(), caca_fill_box(), caca_flip(), caca_flop(), caca_free_frame(), caca_invert(), caca_put_attr(), caca_put_char(), caca_rotate_180(), caca_rotate_left(), caca_rotate_right(), caca_set_canvas_boundaries(), caca_set_frame(), caca_stretch_left(), and caca_stretch_right(). __extern int caca_remove_dirty_rect (caca_canvas_t *cv, intx, inty, intwidth, intheight) Mark a cell area in the canvas as not dirty. For more information about the dirty rectangles, see caca_get_dirty_rect(). Values such that xmin > xmax or ymin > ymax indicate that the dirty rectangle is empty. They will be silently ignored. If an error occurs, -1 is returned and errno is set accordingly: o EINVAL Specified rectangle coordinates are out of bounds. Parameters: cv A libcaca canvas. x The leftmost edge of the clean rectangle. y The topmost edge of the clean rectangle. width The width of the clean rectangle. height The height of the clean rectangle. Returns: 0 in case of success, -1 if an error occurred. __extern int caca_clear_dirty_rect_list (caca_canvas_t *cv) Empty the canvas's dirty rectangle list. This function never fails. Parameters: cv A libcaca canvas. Returns: This function always returns 0. Referenced by caca_refresh_display(). Author Generated automatically by Doxygen for libcaca from the source code. Version 0.99.beta18 Fri Apr 6 2012 libcaca dirty rectangle manipulation(3caca)
All times are GMT -4. The time now is 11:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy